summaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_core.c
diff options
context:
space:
mode:
authorMarcel Holtmann2014-07-01 19:28:23 +0200
committerMarcel Holtmann2014-07-03 17:42:54 +0200
commitb8221770c984bcd185c93cb3a31acab27b67c94a (patch)
tree2ad09f7954dea15bd0ac1a4ecf1839c43e0dfdd7 /net/bluetooth/hci_core.c
parentBluetooth: Allow re-encryption with LTK when STK is in use (diff)
downloadkernel-qcow2-linux-b8221770c984bcd185c93cb3a31acab27b67c94a.tar.gz
kernel-qcow2-linux-b8221770c984bcd185c93cb3a31acab27b67c94a.tar.xz
kernel-qcow2-linux-b8221770c984bcd185c93cb3a31acab27b67c94a.zip
Bluetooth: Do not trigger background scanning when HCI_AUTO_OFF is set
When a new controller is initialized, but not powered from userspace at the moment, the HCI_AUTO_OFF flag is still set. During this period, userspace might program device for auto-connection, but never power on the controller. In this case do not try to start background scanning and leave it for later to be started. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/hci_core.c')
-rw-r--r--net/bluetooth/hci_core.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index 0aa392406629..25ed6d3de410 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -5306,6 +5306,7 @@ void hci_update_background_scan(struct hci_dev *hdev)
if (!test_bit(HCI_UP, &hdev->flags) ||
test_bit(HCI_INIT, &hdev->flags) ||
test_bit(HCI_SETUP, &hdev->dev_flags) ||
+ test_bit(HCI_AUTO_OFF, &hdev->dev_flags) ||
test_bit(HCI_UNREGISTER, &hdev->dev_flags))
return;