summaryrefslogtreecommitdiff
path: root/sys/dev/ray
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2005-08-24 16:50:46 +0000
committerRobert Watson <rwatson@FreeBSD.org>2005-08-24 16:50:46 +0000
commitf0b45413411250a1731acaf286bec7ea1c166c32 (patch)
tree633eaa5cddac16cf9931921e8bc2b49ab6ca672f /sys/dev/ray
parentf08224f9282ebf08945288480ef5251675664f58 (diff)
Notes
Diffstat (limited to 'sys/dev/ray')
-rw-r--r--sys/dev/ray/if_ray.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/ray/if_ray.c b/sys/dev/ray/if_ray.c
index 2417671d23ca..463a9824c276 100644
--- a/sys/dev/ray/if_ray.c
+++ b/sys/dev/ray/if_ray.c
@@ -2704,13 +2704,16 @@ ray_mcast(struct ray_softc *sc, struct ray_comq_entry *com)
* The multicast list is only 16 items long so use promiscuous
* mode and don't bother updating the multicast list.
*/
+ IF_ADDR_LOCK(ifp);
TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
count++;
if (count == 0) {
+ IF_ADDR_UNLOCK(ifp);
ray_com_runq_done(sc);
return;
} else if (count > 16) {
ifp->if_flags |= IFF_ALLMULTI;
+ IF_ADDR_UNLOCK(ifp);
ray_com_runq_done(sc);
return;
} else if (ifp->if_flags & IFF_ALLMULTI)
@@ -2732,6 +2735,7 @@ ray_mcast(struct ray_softc *sc, struct ray_comq_entry *com)
);
bufp += ETHER_ADDR_LEN;
}
+ IF_ADDR_UNLOCK(ifp);
ray_com_ecf(sc, com);
}