From: Gustavo F. Padovan Date: Fri, 17 Jun 2011 15:57:25 +0000 (-0300) Subject: Bluetooth: Fix bad locking balance X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=2461daacb3e2ecca5edea2fa637a1b0922e86515;p=deliverable%2Flinux.git Bluetooth: Fix bad locking balance Signed-off-by: Gustavo F. Padovan --- diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index becf2ad72208..27b2cd124f00 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -741,9 +741,9 @@ static void l2cap_conn_start(struct l2cap_conn *conn) &chan->conf_state)) { /* l2cap_chan_close() calls list_del(chan) * so release the lock */ - read_unlock_bh(&conn->chan_lock); + read_unlock(&conn->chan_lock); l2cap_chan_close(chan, ECONNRESET); - read_lock_bh(&conn->chan_lock); + read_lock(&conn->chan_lock); bh_unlock_sock(sk); continue; }