diff options
author | stephen hemminger <shemminger@vyatta.com> | 2010-03-17 20:31:09 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-20 15:44:34 -0700 |
commit | 372e6c8f1f7b2bb68f9992d2e664925c73552a1d (patch) | |
tree | 8ae282cb00d43e6d04316f5dd1ac163788a7a4df /include/net/if_inet6.h | |
parent | e77c8e83dd587f2616d7ff20d23a897891e6e20d (diff) | |
download | linux-stable-372e6c8f1f7b2bb68f9992d2e664925c73552a1d.tar.gz linux-stable-372e6c8f1f7b2bb68f9992d2e664925c73552a1d.tar.bz2 linux-stable-372e6c8f1f7b2bb68f9992d2e664925c73552a1d.zip |
ipv6: convert temporary address list to list macros
Use list macros instead of open coded linked list.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/if_inet6.h')
-rw-r--r-- | include/net/if_inet6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/if_inet6.h b/include/net/if_inet6.h index 545d8b059bef..09d906460a43 100644 --- a/include/net/if_inet6.h +++ b/include/net/if_inet6.h @@ -58,7 +58,7 @@ struct inet6_ifaddr { struct inet6_ifaddr *if_next; /* next addr in inet6_dev */ #ifdef CONFIG_IPV6_PRIVACY - struct inet6_ifaddr *tmp_next; /* next addr in tempaddr_lst */ + struct list_head tmp_list; struct inet6_ifaddr *ifpub; int regen_count; #endif @@ -175,7 +175,7 @@ struct inet6_dev { #ifdef CONFIG_IPV6_PRIVACY u8 rndid[8]; struct timer_list regen_timer; - struct inet6_ifaddr *tempaddr_list; + struct list_head tempaddr_list; #endif struct neigh_parms *nd_parms; |