dect
/
linux-2.6
Archived
13
0
Fork 0

Bluetooth: Fix bad locking balance

Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
Gustavo F. Padovan 2011-06-17 12:57:25 -03:00
parent 2d25f8b462
commit 2461daacb3
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}