mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
Bluetooth: Allow unsegmented SDU retries on sock_queue_rcv_skb failure
In L2CAP_SDU_UNSEGMENTED case, if sock_queue_rcv_skb returns error, l2cap_ertm_reassembly_sdu should not return 0 so as to insert the skb into BUSY_QUEUE for later retries. Signed-off-by: Ruiyi Zhang <Ruiyi.Zhang@Atheros.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
parent
23b6dd6ff7
commit
54f615108c
|
|
@ -2929,11 +2929,7 @@ static int l2cap_ertm_reassembly_sdu(struct l2cap_chan *chan, struct sk_buff *sk
|
|||
if (chan->conn_state & L2CAP_CONN_SAR_SDU)
|
||||
goto drop;
|
||||
|
||||
err = sock_queue_rcv_skb(chan->sk, skb);
|
||||
if (!err)
|
||||
return err;
|
||||
|
||||
break;
|
||||
return sock_queue_rcv_skb(chan->sk, skb);
|
||||
|
||||
case L2CAP_SDU_START:
|
||||
if (chan->conn_state & L2CAP_CONN_SAR_SDU)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user