(5) from last commit was omitted by mistake:

(5) Return immediately from fxp_intr() if gone is set.
This commit is contained in:
Warner Losh 2003-04-29 05:47:14 +00:00
parent 32cd7a9c00
commit 7634f08a29
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114195

View File

@ -1499,6 +1499,9 @@ fxp_intr(void *xsc)
struct ifnet *ifp = &sc->sc_if;
u_int8_t statack;
if (sc->gone)
return;
FXP_LOCK(sc);
#ifdef DEVICE_POLLING
if (ifp->if_flags & IFF_POLLING) {