Date: Sun, 7 Aug 2005 14:49:07 GMT From: Robert Watson <rwatson@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 81600 for review Message-ID: <200508071449.j77En7WK093635@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=81600 Change 81600 by rwatson@rwatson_peppercorn on 2005/08/07 14:48:20 Catch up with if_pcn driver changes. Affected files ... .. //depot/projects/netsmp/src/sys/pci/if_pcn.c#6 edit Differences ... ==== //depot/projects/netsmp/src/sys/pci/if_pcn.c#6 (text+ko) ==== @@ -927,7 +927,7 @@ sc = xsc; ifp = sc->pcn_ifp; PCN_LOCK(sc); - if (!(ifp->if_flags & IFF_RUNNING)) { + if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) { PCN_UNLOCK(sc); return; } @@ -1087,7 +1087,7 @@ idx = sc->pcn_cdata.pcn_tx_prod; - if (ifp->if_drv_flags & IFF_DRV_OACTIVE) { + if (ifp->if_drv_flags & IFF_DRV_OACTIVE) return; while(sc->pcn_cdata.pcn_tx_chain[idx] == NULL) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200508071449.j77En7WK093635>