]> git.baikalelectronics.ru Git - kernel.git/commit
net: l2tp: unlock socket lock before returning from l2tp_ip_sendmsg
authorSasha Levin <levinsasha928@gmail.com>
Wed, 2 May 2012 03:58:43 +0000 (03:58 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 3 May 2012 01:04:33 +0000 (21:04 -0400)
commit2348d04b64e18634d7ebdcf5b295175e38add3d0
tree6b62fcfca8398296c12e8ebbd37985295ce698e0
parente1f823a5c71a87008a205210740fa9af17713681
net: l2tp: unlock socket lock before returning from l2tp_ip_sendmsg

l2tp_ip_sendmsg could return without releasing socket lock, making it all the
way to userspace, and generating the following warning:

[  130.891594] ================================================
[  130.894569] [ BUG: lock held when returning to user space! ]
[  130.897257] 3.4.0-rc5-next-20120501-sasha #104 Tainted: G        W
[  130.900336] ------------------------------------------------
[  130.902996] trinity/8384 is leaving the kernel with locks still held!
[  130.906106] 1 lock held by trinity/8384:
[  130.907924]  #0:  (sk_lock-AF_INET){+.+.+.}, at: [<ffffffff82b9503f>] l2tp_ip_sendmsg+0x2f/0x550

Introduced by commit a913fed ("l2tp: Fix locking in l2tp_ip.c").

Signed-off-by: Sasha Levin <levinsasha928@gmail.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/l2tp/l2tp_ip.c