diff options
author | stephen hemminger <shemminger@vyatta.com> | 2010-03-17 21:31:11 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-20 23:44:35 +0100 |
commit | 5c578aedcb21d79eeb4e9cf04ca5b276ac82614c (patch) | |
tree | e6d682d3072fda2ae3977beca2beb23d222b6911 /include/net/if_inet6.h | |
parent | ipv6: convert addrconf list to hlist (diff) | |
download | linux-5c578aedcb21d79eeb4e9cf04ca5b276ac82614c.tar.xz linux-5c578aedcb21d79eeb4e9cf04ca5b276ac82614c.zip |
IPv6: convert addrconf hash list to RCU
Convert from reader/writer lock to RCU and spinlock for addrconf
hash list.
Adds an additional helper macro for hlist_for_each_entry_continue_rcu
to handle the continue case.
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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/if_inet6.h b/include/net/if_inet6.h index 498401541519..22a00b1d2c38 100644 --- a/include/net/if_inet6.h +++ b/include/net/if_inet6.h @@ -64,6 +64,7 @@ struct inet6_ifaddr { #endif int dead; + struct rcu_head rcu; }; struct ip6_sf_socklist { |