Bluetooth: Fix LE connection timeout deadlock
authorJohan Hedberg <johan.hedberg@intel.com>
Tue, 28 Oct 2014 21:23:26 +0000 (22:23 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 16 Jan 2015 14:59:47 +0000 (06:59 -0800)
commit 980ffc0a2cec2c37589cc97993e1ad17252f4f47 upstream.

The le_conn_timeout() may call hci_le_conn_failed() which in turn may
call hci_conn_del(). Trying to use the _sync variant for cancelling the
conn timeout from hci_conn_del() could therefore result in a deadlock.
This patch converts hci_conn_del() to use the non-sync variant so the
deadlock is not possible.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/bluetooth/hci_conn.c

index b9517bd171901e7c6a9395791f3ecfc7fbefdd6d..f07933e5c428103ce1f7abce208a8a4c67bbd1a7 100644 (file)
@@ -517,7 +517,7 @@ int hci_conn_del(struct hci_conn *conn)
                /* Unacked frames */
                hdev->acl_cnt += conn->sent;
        } else if (conn->type == LE_LINK) {
-               cancel_delayed_work_sync(&conn->le_conn_timeout);
+               cancel_delayed_work(&conn->le_conn_timeout);
 
                if (hdev->le_pkts)
                        hdev->le_cnt += conn->sent;