summaryrefslogtreecommitdiffstats
path: root/sys/dev/stge
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2009-06-26 11:45:06 +0000
committerrwatson <rwatson@FreeBSD.org>2009-06-26 11:45:06 +0000
commitbe5740a255fbcb1d4053e709cb7f22bb96320eb0 (patch)
tree30aee113c454323f30d4c201e18a0f29e2938074 /sys/dev/stge
parentffea8e20279ff0d82924add1cef0d8e16d9538a5 (diff)
downloadFreeBSD-src-be5740a255fbcb1d4053e709cb7f22bb96320eb0.zip
FreeBSD-src-be5740a255fbcb1d4053e709cb7f22bb96320eb0.tar.gz
Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/
IF_ADDR_UNLOCK() across network device drivers when accessing the per-interface multicast address list, if_multiaddrs. This will allow us to change the locking strategy without affecting our driver programming interface or binary interface. For two wireless drivers, remove unnecessary locking, since they don't actually access the multicast address list. Approved by: re (kib) MFC after: 6 weeks
Diffstat (limited to 'sys/dev/stge')
-rw-r--r--sys/dev/stge/if_stge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/stge/if_stge.c b/sys/dev/stge/if_stge.c
index 0e12728..dac4da6 100644
--- a/sys/dev/stge/if_stge.c
+++ b/sys/dev/stge/if_stge.c
@@ -2683,7 +2683,7 @@ stge_set_multi(struct stge_softc *sc)
bzero(mchash, sizeof(mchash));
count = 0;
- IF_ADDR_LOCK(sc->sc_ifp);
+ if_maddr_rlock(sc->sc_ifp);
TAILQ_FOREACH(ifma, &sc->sc_ifp->if_multiaddrs, ifma_link) {
if (ifma->ifma_addr->sa_family != AF_LINK)
continue;
@@ -2697,7 +2697,7 @@ stge_set_multi(struct stge_softc *sc)
mchash[crc >> 5] |= 1 << (crc & 0x1f);
count++;
}
- IF_ADDR_UNLOCK(ifp);
+ if_maddr_runlock(ifp);
mode &= ~(RM_ReceiveMulticast | RM_ReceiveAllFrames);
if (count > 0)
OpenPOWER on IntegriCloud