summaryrefslogtreecommitdiff
path: root/sys/dev/gem
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2009-06-26 11:45:06 +0000
committerRobert Watson <rwatson@FreeBSD.org>2009-06-26 11:45:06 +0000
commiteb956cd041f956275522092d6ba66671356ff84f (patch)
tree30aee113c454323f30d4c201e18a0f29e2938074 /sys/dev/gem
parentbe80e49a01a84d1920236c2258b9ccb0df28062d (diff)
Notes
Diffstat (limited to 'sys/dev/gem')
-rw-r--r--sys/dev/gem/if_gem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/gem/if_gem.c b/sys/dev/gem/if_gem.c
index 86c9334558b0..945638395b2a 100644
--- a/sys/dev/gem/if_gem.c
+++ b/sys/dev/gem/if_gem.c
@@ -2201,7 +2201,7 @@ gem_setladrf(struct gem_softc *sc)
/* Clear the hash table. */
memset(hash, 0, sizeof(hash));
- IF_ADDR_LOCK(ifp);
+ if_maddr_rlock(ifp);
TAILQ_FOREACH(inm, &ifp->if_multiaddrs, ifma_link) {
if (inm->ifma_addr->sa_family != AF_LINK)
continue;
@@ -2214,7 +2214,7 @@ gem_setladrf(struct gem_softc *sc)
/* Set the corresponding bit in the filter. */
hash[crc >> 4] |= 1 << (15 - (crc & 15));
}
- IF_ADDR_UNLOCK(ifp);
+ if_maddr_runlock(ifp);
v |= GEM_MAC_RX_HASH_FILTER;