Skip to content

Commit

Permalink
Bluetooth: Fix issues where sk_sleep() helper is needed now
Browse files Browse the repository at this point in the history
There were some left-overs that used sk->sk_sleep instead of the new
sk_sleep() helper.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
  • Loading branch information
Marcel Holtmann committed May 10, 2010
1 parent 7b767ca commit 2b0b05d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions net/bluetooth/l2cap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,7 @@ static int __l2cap_wait_ack(struct sock *sk)
int err = 0;
int timeo = HZ/5;

add_wait_queue(sk->sk_sleep, &wait);
add_wait_queue(sk_sleep(sk), &wait);
while ((l2cap_pi(sk)->unacked_frames > 0 && l2cap_pi(sk)->conn)) {
set_current_state(TASK_INTERRUPTIBLE);

Expand All @@ -1269,7 +1269,7 @@ static int __l2cap_wait_ack(struct sock *sk)
break;
}
set_current_state(TASK_RUNNING);
remove_wait_queue(sk->sk_sleep, &wait);
remove_wait_queue(sk_sleep(sk), &wait);
return err;
}

Expand Down Expand Up @@ -3544,7 +3544,7 @@ static void l2cap_busy_work(struct work_struct *work)

lock_sock(sk);

add_wait_queue(sk->sk_sleep, &wait);
add_wait_queue(sk_sleep(sk), &wait);
while ((skb = skb_peek(BUSY_QUEUE(sk)))) {
set_current_state(TASK_INTERRUPTIBLE);

Expand Down Expand Up @@ -3603,7 +3603,7 @@ static void l2cap_busy_work(struct work_struct *work)
pi->conn_state &= ~L2CAP_CONN_RNR_SENT;

set_current_state(TASK_RUNNING);
remove_wait_queue(sk->sk_sleep, &wait);
remove_wait_queue(sk_sleep(sk), &wait);

release_sock(sk);
}
Expand Down

0 comments on commit 2b0b05d

Please sign in to comment.