From: Luiz Augusto von Dentz Date: Wed, 20 Aug 2025 16:21:09 +0000 (-0400) Subject: Bluetooth: hci_core: Print information of hcon on hci_low_sent X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=48a258b198c12685747beaf6392f2b68e6c542c2;p=users%2Fhch%2Fmisc.git Bluetooth: hci_core: Print information of hcon on hci_low_sent This prints the information about the hcon on hci_low_sent to confirm all connection are being processed. Signed-off-by: Luiz Augusto von Dentz --- diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 198819577fe5..3418d7b964a1 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -3435,6 +3435,10 @@ static struct hci_conn *hci_low_sent(struct hci_dev *hdev, __u8 type, skb_queue_empty(&c->data_q)) continue; + bt_dev_dbg(hdev, "hcon %p state %s queued %d", c, + state_to_string(c->state), + skb_queue_len(&c->data_q)); + if (c->state != BT_CONNECTED && c->state != BT_CONFIG) continue;