Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2b0b05dd authored by Marcel Holtmann's avatar Marcel Holtmann
Browse files

Bluetooth: Fix issues where sk_sleep() helper is needed now



There were some left-overs that used sk->sk_sleep instead of the new
sk_sleep() helper.

Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 7b767cad
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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);

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

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

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