From: Gustavo Padovan Date: Wed, 16 May 2012 15:17:12 +0000 (-0300) Subject: Bluetooth: Report proper error number in disconnection X-Git-Tag: Ubuntu-5.13.0-19.19~24572^2~6^2^2^2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=d839c81372d1f0caee47f87b26a68e91d4ff3847;p=mirror_ubuntu-jammy-kernel.git Bluetooth: Report proper error number in disconnection If encryption change fails we should disconnect with auth failure error code. Signed-off-by: Gustavo Padovan Signed-off-by: Johan Hedberg --- diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 9c60e0d8db5f..4eefb7f65cf6 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -2063,7 +2063,7 @@ static inline void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff * clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags); if (ev->status && conn->state == BT_CONNECTED) { - hci_acl_disconn(conn, 0x13); + hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE); hci_conn_put(conn); goto unlock; }