diff options
author | Jarek Poplawski <jarkao2@o2.pl> | 2007-03-08 17:43:41 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-03-08 17:43:41 -0500 |
commit | e2eb8d452827b8d1f73db384cd7c6482eac29478 (patch) | |
tree | f54eb5b8fee852dc1e670cd3c10efe751f4e4434 /net/sctp/ipv6.c | |
parent | ca4266359d0c1199af088447f209ab5bcc32a989 (diff) |
[SCTP] ipv6: inconsistent lock state ipv6_add_addr/sctp_v6_copy_addrlist
lockdep found that dev->lock taken from softirq in ipv6_add_addr
is also taken in sctp_v6_copy_addrlist with softirqs enabled, so
lockup is possible.
Noticed-by: Simon Arlott <simon@arlott.org>
Signed-off-by: Jarek Poplawski <jarkao2@o2.pl>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/ipv6.c')
-rw-r--r-- | net/sctp/ipv6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sctp/ipv6.c b/net/sctp/ipv6.c index 63fe1093b616..0b9c49b3a100 100644 --- a/net/sctp/ipv6.c +++ b/net/sctp/ipv6.c | |||
@@ -360,7 +360,7 @@ static void sctp_v6_copy_addrlist(struct list_head *addrlist, | |||
360 | return; | 360 | return; |
361 | } | 361 | } |
362 | 362 | ||
363 | read_lock(&in6_dev->lock); | 363 | read_lock_bh(&in6_dev->lock); |
364 | for (ifp = in6_dev->addr_list; ifp; ifp = ifp->if_next) { | 364 | for (ifp = in6_dev->addr_list; ifp; ifp = ifp->if_next) { |
365 | /* Add the address to the local list. */ | 365 | /* Add the address to the local list. */ |
366 | addr = t_new(struct sctp_sockaddr_entry, GFP_ATOMIC); | 366 | addr = t_new(struct sctp_sockaddr_entry, GFP_ATOMIC); |
@@ -374,7 +374,7 @@ static void sctp_v6_copy_addrlist(struct list_head *addrlist, | |||
374 | } | 374 | } |
375 | } | 375 | } |
376 | 376 | ||
377 | read_unlock(&in6_dev->lock); | 377 | read_unlock_bh(&in6_dev->lock); |
378 | rcu_read_unlock(); | 378 | rcu_read_unlock(); |
379 | } | 379 | } |
380 | 380 | ||