diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2004-08-14 00:17:04 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2004-08-14 00:17:04 +0000 |
| commit | f92e0b28a4e32c815518d0dfd9b65ff131b7eac4 (patch) | |
| tree | f2fcef94315765df986f4c1a8ee12436a698ad71 /sys/dev/ixgb | |
| parent | 7e3a88ea3c51c3a2608d05d23c7be87d8c5c829d (diff) | |
Notes
Diffstat (limited to 'sys/dev/ixgb')
| -rw-r--r-- | sys/dev/ixgb/if_ixgb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ixgb/if_ixgb.c b/sys/dev/ixgb/if_ixgb.c index ff525f466969..cc4739199f9f 100644 --- a/sys/dev/ixgb/if_ixgb.c +++ b/sys/dev/ixgb/if_ixgb.c @@ -1319,7 +1319,8 @@ ixgb_setup_interface(device_t dev, struct adapter * adapter) ifp->if_baudrate = 1000000000; ifp->if_init = ixgb_init; ifp->if_softc = adapter; - ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; + ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST | + IFF_NEEDSGIANT; ifp->if_ioctl = ixgb_ioctl; ifp->if_start = ixgb_start; ifp->if_watchdog = ixgb_watchdog; |
