diff options
| author | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2025-08-20 12:21:09 -0400 |
|---|---|---|
| committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2025-09-27 11:37:01 -0400 |
| commit | 48a258b198c12685747beaf6392f2b68e6c542c2 (patch) | |
| tree | 00d4e3a38f8235c109ce62dd426841a6e01a568a /net/bluetooth/hci_core.c | |
| parent | 3c34d6428740e47b29ae3afd85d6f9eb656a3ea3 (diff) | |
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 <luiz.von.dentz@intel.com>
Diffstat (limited to 'net/bluetooth/hci_core.c')
| -rw-r--r-- | net/bluetooth/hci_core.c | 4 |
1 files changed, 4 insertions, 0 deletions
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; |