diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2014-02-24 07:52:19 -0500 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-02-24 14:10:36 -0500 |
commit | bd107999338fbb2e084acebc635333a5cd156b09 (patch) | |
tree | dea4195d6a8c1a21015f6af73cb4b89f4e6c700c /net/bluetooth | |
parent | 12d4a3b2ccb3ac2bd56e7c216d6e7f44730006f3 (diff) |
Bluetooth: Don't clear HCI_DISCOVERABLE when powering off
Once mgmt_set_powered(off) is updated to clear the scan mode we should
not just blindly clear the HCI_DISCOVERABLE flag in mgmt_discoverable()
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>
Diffstat (limited to 'net/bluetooth')
-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 bdc831b3bb97..769b5dc0270d 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c | |||
@@ -4790,6 +4790,10 @@ void mgmt_discoverable(struct hci_dev *hdev, u8 discoverable) | |||
4790 | if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev)) | 4790 | if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev)) |
4791 | return; | 4791 | return; |
4792 | 4792 | ||
4793 | /* Powering off may clear the scan mode - don't let that interfere */ | ||
4794 | if (!discoverable && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) | ||
4795 | return; | ||
4796 | |||
4793 | if (discoverable) { | 4797 | if (discoverable) { |
4794 | changed = !test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags); | 4798 | changed = !test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags); |
4795 | } else { | 4799 | } else { |