diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2006-09-22 17:44:24 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 18:20:26 -0400 |
commit | 8814c4b533817df825485ff32ce6ac406c3a54d1 (patch) | |
tree | b72cc3513e7dc4b60e98c7ddebe76bca188f88fc /net/sctp | |
parent | fbea49e1e2404baa2d88ab47e2db89e49551b53b (diff) |
[IPV6] ADDRCONF: Convert addrconf_lock to RCU.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/ipv6.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/sctp/ipv6.c b/net/sctp/ipv6.c index fd87e3ceb56e..249e5033c1a8 100644 --- a/net/sctp/ipv6.c +++ b/net/sctp/ipv6.c | |||
@@ -321,9 +321,9 @@ static void sctp_v6_copy_addrlist(struct list_head *addrlist, | |||
321 | struct inet6_ifaddr *ifp; | 321 | struct inet6_ifaddr *ifp; |
322 | struct sctp_sockaddr_entry *addr; | 322 | struct sctp_sockaddr_entry *addr; |
323 | 323 | ||
324 | read_lock(&addrconf_lock); | 324 | rcu_read_lock(); |
325 | if ((in6_dev = __in6_dev_get(dev)) == NULL) { | 325 | if ((in6_dev = __in6_dev_get(dev)) == NULL) { |
326 | read_unlock(&addrconf_lock); | 326 | rcu_read_unlock(); |
327 | return; | 327 | return; |
328 | } | 328 | } |
329 | 329 | ||
@@ -342,7 +342,7 @@ static void sctp_v6_copy_addrlist(struct list_head *addrlist, | |||
342 | } | 342 | } |
343 | 343 | ||
344 | read_unlock(&in6_dev->lock); | 344 | read_unlock(&in6_dev->lock); |
345 | read_unlock(&addrconf_lock); | 345 | rcu_read_unlock(); |
346 | } | 346 | } |
347 | 347 | ||
348 | /* Initialize a sockaddr_storage from in incoming skb. */ | 348 | /* Initialize a sockaddr_storage from in incoming skb. */ |