mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
Bluetooth: Fix unset of RemoteBusy flag for L2CAP
RemoteBusy flag need to be unset before l2cap_ertm_send(), otherwise l2cap_ertm_send() will return without sending packets because it checks that flag before start sending. Signed-off-by: Gustavo F. Padovan <gustavo@las.ic.unicamp.br> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
971beb83ae
commit
186de9a338
1 changed files with 1 additions and 1 deletions
|
@ -3435,8 +3435,8 @@ static inline int l2cap_data_channel_sframe(struct sock *sk, u16 rx_control, str
|
||||||
(pi->unacked_frames > 0))
|
(pi->unacked_frames > 0))
|
||||||
__mod_retrans_timer();
|
__mod_retrans_timer();
|
||||||
|
|
||||||
l2cap_ertm_send(sk);
|
|
||||||
pi->conn_state &= ~L2CAP_CONN_REMOTE_BUSY;
|
pi->conn_state &= ~L2CAP_CONN_REMOTE_BUSY;
|
||||||
|
l2cap_ertm_send(sk);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue