diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2014-02-24 07:52:20 -0500 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-02-24 14:10:36 -0500 |
commit | ce3f24cfb2a2287409acad3dd990570fe62d0af4 (patch) | |
tree | c9c833ad5489ceb641c34556b245c02162492874 | |
parent | bd107999338fbb2e084acebc635333a5cd156b09 (diff) |
Bluetooth: Don't clear HCI_CONNECTABLE when powering off
Once mgmt_set_powered(off) is updated to clear the scan mode we should
not just blindly clear the HCI_CONNECTABLE flag in mgmt_connectable()
but first check if there is a pending set_powered operation.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | net/bluetooth/mgmt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 769b5dc0270d..5899ac7264ff 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c | |||
@@ -4827,6 +4827,10 @@ void mgmt_connectable(struct hci_dev *hdev, u8 connectable) | |||
4827 | if (mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) | 4827 | if (mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) |
4828 | return; | 4828 | return; |
4829 | 4829 | ||
4830 | /* Powering off may clear the scan mode - don't let that interfere */ | ||
4831 | if (!connectable && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) | ||
4832 | return; | ||
4833 | |||
4830 | if (connectable) | 4834 | if (connectable) |
4831 | changed = !test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags); | 4835 | changed = !test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags); |
4832 | else | 4836 | else |