diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2001-02-06 10:12:15 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2001-02-06 10:12:15 +0000 |
commit | 6817526d14cbd2812ff570e7a0b8b5905ab98b1b (patch) | |
tree | 625adfe0fc45dc854cabadf252ed23af4a4d1fad /sys/net/if_var.h | |
parent | 2cdd9c0332ec8dea64ef2429b1722945f2df5128 (diff) | |
download | src-6817526d14cbd2812ff570e7a0b8b5905ab98b1b.tar.gz src-6817526d14cbd2812ff570e7a0b8b5905ab98b1b.zip |
Convert if_multiaddrs from LIST to TAILQ so that it can be traversed
backwards in the three drivers which want to do that.
Reviewed by: mikeh
Notes
Notes:
svn path=/head/; revision=72084
Diffstat (limited to 'sys/net/if_var.h')
-rw-r--r-- | sys/net/if_var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_var.h b/sys/net/if_var.h index fc60f9cf787d..68b0c01ec11d 100644 --- a/sys/net/if_var.h +++ b/sys/net/if_var.h @@ -83,7 +83,7 @@ struct ether_header; TAILQ_HEAD(ifnethead, ifnet); /* we use TAILQs so that the order of */ TAILQ_HEAD(ifaddrhead, ifaddr); /* instantiation is preserved in the list */ TAILQ_HEAD(ifprefixhead, ifprefix); -LIST_HEAD(ifmultihead, ifmultiaddr); +TAILQ_HEAD(ifmultihead, ifmultiaddr); /* * Structure defining a queue for a network interface. @@ -352,7 +352,7 @@ struct ifprefix { * address, not a count of pointers to this structure. */ struct ifmultiaddr { - LIST_ENTRY(ifmultiaddr) ifma_link; /* queue macro glue */ + TAILQ_ENTRY(ifmultiaddr) ifma_link; /* queue macro glue */ struct sockaddr *ifma_addr; /* address this membership is for */ struct sockaddr *ifma_lladdr; /* link-layer translation, if any */ struct ifnet *ifma_ifp; /* back-pointer to interface */ |