Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c89b6e6b authored by Marcel Holtmann's avatar Marcel Holtmann
Browse files

Bluetooth: Fix SCO state handling for incoming connections



When the remote device supports only SCO connections, on receipt of
the HCI_EV_CONN_COMPLETE event packet, the connect state is changed to
BT_CONNECTED, but the socket state is not updated. Hence, the connect()
call times out even though the SCO connection has been successfully
established.

Based on a report by Jaikumar Ganesh <jaikumar@google.com>

Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 71aeeaa1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -914,7 +914,8 @@ static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *s
	if (ev->status) {
		hci_proto_connect_cfm(conn, ev->status);
		hci_conn_del(conn);
	}
	} else if (ev->link_type != ACL_LINK)
		hci_proto_connect_cfm(conn, ev->status);

unlock:
	hci_dev_unlock(hdev);