diff options
author | rwatson <rwatson@FreeBSD.org> | 2004-08-28 15:10:35 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2004-08-28 15:10:35 +0000 |
commit | bb60ef092768837ab9067cd484bec4f3c179c5a5 (patch) | |
tree | 206c6b5c619776a3887539552fb0be0b3f4781c9 /sys/pci/if_tl.c | |
parent | 1057ee343cee3ac0157a20aa450988d1e301c5f5 (diff) | |
download | FreeBSD-src-bb60ef092768837ab9067cd484bec4f3c179c5a5.zip FreeBSD-src-bb60ef092768837ab9067cd484bec4f3c179c5a5.tar.gz |
Tag a last set of PCI network interfaces as IFF_NEEDSGIANT until they
are either locked down or demonstrated MPSAFE.
Diffstat (limited to 'sys/pci/if_tl.c')
-rw-r--r-- | sys/pci/if_tl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/pci/if_tl.c b/sys/pci/if_tl.c index deb8005..e453b92 100644 --- a/sys/pci/if_tl.c +++ b/sys/pci/if_tl.c @@ -1262,7 +1262,8 @@ tl_attach(dev) ifp = &sc->arpcom.ac_if; ifp->if_softc = sc; if_initname(ifp, device_get_name(dev), device_get_unit(dev)); - ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; + ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST | + IFF_NEEDSGIANT; ifp->if_ioctl = tl_ioctl; ifp->if_start = tl_start; ifp->if_watchdog = tl_watchdog; |