Message ID | 20240110204733.685963-1-luiz.dentz@gmail.com |
---|---|
State | New |
Headers | show |
Series | [v2] Bluetooth: hci_core: Cancel request on command timeout | expand |
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index e5cb618fa6d3..af82f903163e 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -1523,10 +1523,11 @@ static void hci_cmd_timeout(struct work_struct *work) cmd_timer.work); if (hdev->sent_cmd) { - struct hci_command_hdr *sent = (void *) hdev->sent_cmd->data; - u16 opcode = __le16_to_cpu(sent->opcode); + u16 opcode = hci_skb_opcode(hdev->sent_cmd); bt_dev_err(hdev, "command 0x%4.4x tx timeout", opcode); + + __hci_cmd_sync_cancel(hdev, -ETIMEDOUT); } else { bt_dev_err(hdev, "command tx timeout"); }