mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 05:26:07 +00:00
Bluetooth: Fix removing of RFCOMM DLC timer with DEFER_SETUP
There is a missing call to rfcomm_dlc_clear_timer in the case that DEFER_SETUP is used and so the connection gets disconnected after the timeout even if it was successfully accepted previously. This patch adds a call to rfcomm_dlc_clear_timer to rfcomm_dlc_accept which will get called when the user accepts the connection by calling read() on the socket. Signed-off-by: Johan Hedberg <johan.hedberg@nokia.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
a0a69a0106
commit
e2139b3272
@ -1194,6 +1194,8 @@ void rfcomm_dlc_accept(struct rfcomm_dlc *d)
|
||||
|
||||
rfcomm_send_ua(d->session, d->dlci);
|
||||
|
||||
rfcomm_dlc_clear_timer(d);
|
||||
|
||||
rfcomm_dlc_lock(d);
|
||||
d->state = BT_CONNECTED;
|
||||
d->state_change(d, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user