From: Johan Hedberg Date: Tue, 8 Jul 2014 14:21:51 +0000 (+0300) Subject: Bluetooth: Fix clearing HCI_LE_ADV for LE connections X-Git-Tag: v3.17-rc1~106^2~12^2~41^2~87 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fbd96c151cdcadb0ce83b45747d738498d72aa9d;p=platform%2Fkernel%2Flinux-exynos.git Bluetooth: Fix clearing HCI_LE_ADV for LE connections All LE controllers always implicitly stop advertising when establishing connections. Therefore, be sure to clear the flag in the event handler for new LE connections. Signed-off-by: Johan Hedberg Signed-off-by: Marcel Holtmann --- diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 2b3d366..f699790 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -4097,6 +4097,11 @@ static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb) hci_dev_lock(hdev); + /* All controllers implicitly stop advertising in the event of a + * connection, so ensure that the state bit is cleared. + */ + clear_bit(HCI_LE_ADV, &hdev->dev_flags); + conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT); if (!conn) { conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);