Bluetooth: Handle system suspend resume case
authorHoward Chung <howardchung@google.com>
Thu, 26 Nov 2020 04:22:22 +0000 (12:22 +0800)
committerJohan Hedberg <johan.hedberg@intel.com>
Mon, 7 Dec 2020 15:00:47 +0000 (17:00 +0200)
This patch adds code to handle the system suspension during interleave
scan. The interleave scan will be canceled when the system is going to
sleep, and will be restarted after waking up.

Signed-off-by: Howard Chung <howardchung@google.com>
Reviewed-by: Alain Michaud <alainm@chromium.org>
Reviewed-by: Manish Mandlik <mmandlik@chromium.org>
Reviewed-by: Abhishek Pandit-Subedi <abhishekpandit@chromium.org>
Reviewed-by: Miao-chen Chou <mcchou@chromium.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
net/bluetooth/hci_request.c

index d6bf1517ddaec85186437575a4b66a3a8a3e166d..8addb94560013c7b6fe4630a369eef317ddca56f 100644 (file)
@@ -1294,8 +1294,10 @@ void hci_req_prepare_suspend(struct hci_dev *hdev, enum suspended_state next)
                hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &page_scan);
 
                /* Disable LE passive scan if enabled */
-               if (hci_dev_test_flag(hdev, HCI_LE_SCAN))
+               if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
+                       cancel_interleave_scan(hdev);
                        hci_req_add_le_scan_disable(&req, false);
+               }
 
                /* Mark task needing completion */
                set_bit(SUSPEND_SCAN_DISABLE, hdev->suspend_tasks);