mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
hyperv/hn: Put debug message under bootverbose
MFC after: 1 week Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D7875
This commit is contained in:
parent
174e02e003
commit
5bc2bbe347
1 changed files with 4 additions and 2 deletions
|
|
@ -629,8 +629,10 @@ netvsc_attach(device_t dev)
|
|||
|
||||
ether_ifattach(ifp, eaddr);
|
||||
|
||||
if_printf(ifp, "TSO: %u/%u/%u\n", ifp->if_hw_tsomax,
|
||||
ifp->if_hw_tsomaxsegcount, ifp->if_hw_tsomaxsegsize);
|
||||
if (bootverbose) {
|
||||
if_printf(ifp, "TSO: %u/%u/%u\n", ifp->if_hw_tsomax,
|
||||
ifp->if_hw_tsomaxsegcount, ifp->if_hw_tsomaxsegsize);
|
||||
}
|
||||
|
||||
/* Inform the upper layer about the long frame support. */
|
||||
ifp->if_hdrlen = sizeof(struct ether_vlan_header);
|
||||
|
|
|
|||
Loading…
Reference in a new issue