summaryrefslogtreecommitdiffstats
path: root/sys/dev/ray
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2001-02-03 16:29:10 +0000
committerphk <phk@FreeBSD.org>2001-02-03 16:29:10 +0000
commit408a00d7df90965db4085ccfd67356bf3f7c38ee (patch)
tree4ad9050dfc339204ebef2be568d2128e1bbf4da8 /sys/dev/ray
parent2ef21ddcb983700a744a68bdc09d4328d1af0d71 (diff)
downloadFreeBSD-src-408a00d7df90965db4085ccfd67356bf3f7c38ee.zip
FreeBSD-src-408a00d7df90965db4085ccfd67356bf3f7c38ee.tar.gz
Use LIST_FOREACH() to traverse ifp->if_multiaddrs list, instead of
<sys/queue.h> implementation details. Created with: /usr/sbin/sed Reviewed with: /sbin/md5
Diffstat (limited to 'sys/dev/ray')
-rw-r--r--sys/dev/ray/if_ray.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/ray/if_ray.c b/sys/dev/ray/if_ray.c
index f00d740..2563daf 100644
--- a/sys/dev/ray/if_ray.c
+++ b/sys/dev/ray/if_ray.c
@@ -2421,8 +2421,7 @@ 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.
*/
- for (ifma = ifp->if_multiaddrs.lh_first, count = 0; ifma != NULL;
- ifma = ifma->ifma_link.le_next, count++)
+ LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
if (count == 0) {
ray_com_runq_done(sc);
return;
@@ -2440,8 +2439,7 @@ ray_mcast(struct ray_softc *sc, struct ray_comq_entry *com)
SRAM_WRITE_FIELD_1(sc, com->c_ccs,
ray_cmd_update_mcast, c_nmcast, count);
bufp = RAY_HOST_TO_ECF_BASE;
- for (ifma = ifp->if_multiaddrs.lh_first; ifma != NULL;
- ifma = ifma->ifma_link.le_next) {
+ LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
SRAM_WRITE_REGION(
sc,
bufp,
OpenPOWER on IntegriCloud