diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2014-02-24 07:52:21 -0500 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-02-24 14:10:36 -0500 |
commit | 7c4cfab8082f1398dc7bc091166dd302a44b015b (patch) | |
tree | 8c0beb668da57383c61f264a488208a497650d38 | |
parent | ce3f24cfb2a2287409acad3dd990570fe62d0af4 (diff) |
Bluetooth: Don't clear HCI_ADVERTISING when powering off
Once mgmt_set_powered(off) is updated to clear the scan mode we should
not just blindly clear the HCI_ADVERTISING flag in mgmt_advertising()
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 5899ac7264ff..610ac32e797b 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c | |||
@@ -4842,6 +4842,10 @@ void mgmt_connectable(struct hci_dev *hdev, u8 connectable) | |||
4842 | 4842 | ||
4843 | void mgmt_advertising(struct hci_dev *hdev, u8 advertising) | 4843 | void mgmt_advertising(struct hci_dev *hdev, u8 advertising) |
4844 | { | 4844 | { |
4845 | /* Powering off may stop advertising - don't let that interfere */ | ||
4846 | if (!advertising && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) | ||
4847 | return; | ||
4848 | |||
4845 | if (advertising) | 4849 | if (advertising) |
4846 | set_bit(HCI_ADVERTISING, &hdev->dev_flags); | 4850 | set_bit(HCI_ADVERTISING, &hdev->dev_flags); |
4847 | else | 4851 | else |