]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Bluetooth: Directly close dlc for not yet started RFCOMM session
authorPeter Hurley <peter@hurleysoftware.com>
Mon, 10 Feb 2014 01:59:14 +0000 (20:59 -0500)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 14 Feb 2014 21:39:31 +0000 (13:39 -0800)
If the RFCOMM session has not yet been started (ie., session is
still in BT_BOUND state) when a dlc is closed, directly close and
unlink the dlc rather than sending a DISC frame that is never
sent.

This allows the dlci to be immediately reused rather than waiting
for a 20 second timeout.

Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Tested-By: Alexander Holler <holler@ahsoftware.de>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/rfcomm/core.c

index 5acc82fa020044228a07d0174987e397b21043c6..b727cd97c5a28253a63cdb53b7f659602d8df4f9 100644 (file)
@@ -468,13 +468,19 @@ static int __rfcomm_dlc_close(struct rfcomm_dlc *d, int err)
 
        switch (d->state) {
        case BT_CONNECT:
-       case BT_CONFIG:
-               /* Fall through */
-
        case BT_CONNECTED:
                __rfcomm_dlc_disconn(d);
                break;
 
+       case BT_CONFIG:
+               if (s->state != BT_BOUND) {
+                       __rfcomm_dlc_disconn(d);
+                       break;
+               }
+               /* if closing a dlc in a session that hasn't been started,
+                * just close and unlink the dlc
+                */
+
        default:
                rfcomm_dlc_clear_timer(d);