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

Commit 029727a3 authored by Johan Hedberg's avatar Johan Hedberg Committed by Marcel Holtmann
Browse files

Bluetooth: Fix suspending the L2CAP socket if we start with 0 credits



If the peer gives us zero credits in its connection request or response
we must call the suspend channel callback so the BT_SK_SUSPEND flag gets
set and user space is blocked from sending data to the socket.

Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 595177f3
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1202,6 +1202,9 @@ static void l2cap_le_flowctl_start(struct l2cap_chan *chan)
	chan->sdu_len = 0;

	skb_queue_head_init(&chan->tx_q);

	if (!chan->tx_credits)
		chan->ops->suspend(chan);
}

static void l2cap_chan_ready(struct l2cap_chan *chan)