|
@@ -2039,6 +2039,12 @@ static inline void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *
|
|
|
|
|
|
clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
|
|
clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
|
|
|
|
|
|
|
|
+ if (ev->status && conn->state == BT_CONNECTED) {
|
|
|
|
+ hci_acl_disconn(conn, 0x13);
|
|
|
|
+ hci_conn_put(conn);
|
|
|
|
+ goto unlock;
|
|
|
|
+ }
|
|
|
|
+
|
|
if (conn->state == BT_CONFIG) {
|
|
if (conn->state == BT_CONFIG) {
|
|
if (!ev->status)
|
|
if (!ev->status)
|
|
conn->state = BT_CONNECTED;
|
|
conn->state = BT_CONNECTED;
|
|
@@ -2049,6 +2055,7 @@ static inline void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *
|
|
hci_encrypt_cfm(conn, ev->status, ev->encrypt);
|
|
hci_encrypt_cfm(conn, ev->status, ev->encrypt);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+unlock:
|
|
hci_dev_unlock(hdev);
|
|
hci_dev_unlock(hdev);
|
|
}
|
|
}
|
|
|
|
|