[PATCH 1/4] Bluetooth: hci_cc_le_set_scan_enable() critical region

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This patch reduces the critial region (protected by hdev->lock) in
hci_cc_le_set_scan_enable(). This way, only really needed code is
protected.

Signed-off-by: Andre Guedes <andre.guedes@xxxxxxxxxxxxx>
---
 net/bluetooth/hci_event.c |   21 +++++++++++----------
 1 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index 55872ff..9910f81 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -894,23 +894,24 @@ static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
 	if (!cp)
 		return;
 
-	hci_dev_lock(hdev);
-
 	if (cp->enable == 0x01) {
 		if (status) {
 			mgmt_start_discovery_failed(hdev->id,
 							bt_to_errno(status));
-			goto unlock;
+			return;
 		}
 
 		set_bit(HCI_LE_SCAN, &hdev->flags);
 
 		del_timer(&hdev->adv_timer);
+
+		hci_dev_lock(hdev);
 		hci_adv_entries_clear(hdev);
+		hci_dev_unlock(hdev);
 
 		if (mgmt_has_pending_stop_discov(hdev->id)) {
 			mgmt_cancel_discovery(hdev->id);
-			goto unlock;
+			return;
 		}
 
 		if (!mgmt_is_interleaved_discovery(hdev->id))
@@ -924,7 +925,7 @@ static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
 				mgmt_start_discovery_failed(hdev->id,
 							bt_to_errno(status));
 
-			goto unlock;
+			return;
 		}
 
 		clear_bit(HCI_LE_SCAN, &hdev->flags);
@@ -933,14 +934,14 @@ static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
 
 		mgmt_discovering(hdev->id, 0);
 
-		if (mgmt_has_pending_stop_discov(hdev->id))
+		if (mgmt_has_pending_stop_discov(hdev->id)) {
 			mgmt_stop_discovery_complete(hdev->id);
-		else
+		} else {
+			hci_dev_lock(hdev);
 			mgmt_start_discovery_complete(hdev->id);
+			hci_dev_unlock(hdev);
+		}
 	}
-
-unlock:
-	hci_dev_unlock(hdev);
 }
 
 static void hci_cc_le_ltk_reply(struct hci_dev *hdev, struct sk_buff *skb)
-- 
1.7.5.2

--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux