aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/rfcomm
diff options
context:
space:
mode:
authorPeter Hurley <peter@hurleysoftware.com>2014-02-09 20:59:16 -0500
committerMarcel Holtmann <marcel@holtmann.org>2014-02-14 16:39:31 -0500
commitb4d21f193985218c6c75969376249f69e49eb6ee (patch)
treed415f2724ad0624f1510505a0b6e174af5d52e04 /net/bluetooth/rfcomm
parentb92483d54abb4ff288accc36bf1daef44dea9fbe (diff)
Bluetooth: Fix RFCOMM parent device for reused dlc
The RFCOMM tty device is parented to the acl link device when the dlc state_change(BT_CONNECTED) notification is received. However, if the dlc from the RFCOMM socket is being reused (RFCOMM_REUSE_DLC is set), then the dlc may already be connected, and no notification will occur. Instead, always parent the RFCOMM tty device to the acl link device at registration time. If the acl link device is not available (eg, because the dlc is not connected) then the tty will remain unparented until the BT_CONNECTED notification is received. Fixes regression with ModemManager when the rfcomm device is created with the flag RFCOMM_REUSE_DLC. Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Tested-By: Alexander Holler <holler@ahsoftware.de> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/rfcomm')
-rw-r--r--net/bluetooth/rfcomm/tty.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bluetooth/rfcomm/tty.c b/net/bluetooth/rfcomm/tty.c
index 2975bc4b9188..fa1226f17e86 100644
--- a/net/bluetooth/rfcomm/tty.c
+++ b/net/bluetooth/rfcomm/tty.c
@@ -316,6 +316,7 @@ out:
316 goto free; 316 goto free;
317 } 317 }
318 318
319 rfcomm_reparent_device(dev);
319 dev_set_drvdata(dev->tty_dev, dev); 320 dev_set_drvdata(dev->tty_dev, dev);
320 321
321 if (device_create_file(dev->tty_dev, &dev_attr_address) < 0) 322 if (device_create_file(dev->tty_dev, &dev_attr_address) < 0)