diff options
author | stephen hemminger <shemminger@vyatta.com> | 2010-03-17 16:31:13 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-20 18:45:09 -0400 |
commit | 502a2ffd7376ae27cfde6172257db0ff9d8cfec2 (patch) | |
tree | de51fc19a9442f3edd344f56ff1887b25a5da6c9 /net/sctp/ipv6.c | |
parent | 3a88a81d89c20be312b3b219b185bbdde24b8fb8 (diff) |
ipv6: convert idev_list to list macros
Convert to list macro's for the list of addresses per interface
in IPv6.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/ipv6.c')
-rw-r--r-- | net/sctp/ipv6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/ipv6.c b/net/sctp/ipv6.c index 1d7ac70ba39f..240dceba06e5 100644 --- a/net/sctp/ipv6.c +++ b/net/sctp/ipv6.c | |||
@@ -371,7 +371,7 @@ static void sctp_v6_copy_addrlist(struct list_head *addrlist, | |||
371 | } | 371 | } |
372 | 372 | ||
373 | read_lock_bh(&in6_dev->lock); | 373 | read_lock_bh(&in6_dev->lock); |
374 | for (ifp = in6_dev->addr_list; ifp; ifp = ifp->if_next) { | 374 | list_for_each_entry(ifp, &in6_dev->addr_list, if_list) { |
375 | /* Add the address to the local list. */ | 375 | /* Add the address to the local list. */ |
376 | addr = t_new(struct sctp_sockaddr_entry, GFP_ATOMIC); | 376 | addr = t_new(struct sctp_sockaddr_entry, GFP_ATOMIC); |
377 | if (addr) { | 377 | if (addr) { |