From: Luiz Augusto von Dentz Date: Tue, 19 May 2020 20:25:17 +0000 (-0700) Subject: Bluetooth: Fix assuming EIR flags can result in SSP authentication X-Git-Tag: v5.10.7~2469^2~36^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=755dfcbca83710fa967d0efa7c5bb601f871a747;p=platform%2Fkernel%2Flinux-rpi.git Bluetooth: Fix assuming EIR flags can result in SSP authentication EIR flags should just hint if SSP may be supported but we shall verify this with use of the actual features as the SSP bits may be disabled in the lower layers which would result in legacy authentication to be used. Signed-off-by: Luiz Augusto von Dentz Signed-off-by: Marcel Holtmann --- diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index 07c34c5..307800f 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -225,8 +225,6 @@ static void hci_acl_create_connection(struct hci_conn *conn) } memcpy(conn->dev_class, ie->data.dev_class, 3); - if (ie->data.ssp_mode > 0) - set_bit(HCI_CONN_SSP_ENABLED, &conn->flags); } cp.pkt_type = cpu_to_le16(conn->pkt_type);