summaryrefslogtreecommitdiffstats
path: root/net/bluetooth/l2cap_core.c
diff options
context:
space:
mode:
authorJohn W. Linville <linville@tuxdriver.com>2011-08-22 14:20:09 -0400
committerJohn W. Linville <linville@tuxdriver.com>2011-08-22 14:20:09 -0400
commit4475a0a93f368e57d5306d4cbe9318e8c1c90c41 (patch)
treeb4b7b23d8939d3e764bf54026ae42205dc6850be /net/bluetooth/l2cap_core.c
parent16a9d06c753abc44f66f88e03bbecb3f1e45d71b (diff)
parent687beaa0d1d937c327e2f97b4b4fa6c23ca70624 (diff)
downloadop-kernel-dev-4475a0a93f368e57d5306d4cbe9318e8c1c90c41.zip
op-kernel-dev-4475a0a93f368e57d5306d4cbe9318e8c1c90c41.tar.gz
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/padovan/bluetooth
Diffstat (limited to 'net/bluetooth/l2cap_core.c')
-rw-r--r--net/bluetooth/l2cap_core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index 3204ba8..b3bdb48 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -1159,9 +1159,8 @@ int __l2cap_wait_ack(struct sock *sk)
int timeo = HZ/5;
add_wait_queue(sk_sleep(sk), &wait);
- while ((chan->unacked_frames > 0 && chan->conn)) {
- set_current_state(TASK_INTERRUPTIBLE);
-
+ set_current_state(TASK_INTERRUPTIBLE);
+ while (chan->unacked_frames > 0 && chan->conn) {
if (!timeo)
timeo = HZ/5;
@@ -1173,6 +1172,7 @@ int __l2cap_wait_ack(struct sock *sk)
release_sock(sk);
timeo = schedule_timeout(timeo);
lock_sock(sk);
+ set_current_state(TASK_INTERRUPTIBLE);
err = sock_error(sk);
if (err)
OpenPOWER on IntegriCloud