diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-12-22 22:56:05 +0400 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-12-23 00:00:54 +0400 |
commit | 2fb9b3d4e5d720d4033461519af0d3f789924015 (patch) | |
tree | fb4fe1e8e353a9d1041da2eb184be0ea7b91ee27 | |
parent | 5436538fb5f2a12e5328dcaa2e3a1742be25c2e0 (diff) | |
download | linux-2fb9b3d4e5d720d4033461519af0d3f789924015.tar.xz |
Bluetooth: add debug output to l2cap_ack_timeout()
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
-rw-r--r-- | net/bluetooth/l2cap_core.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 944c18913ca0..cd7bb3d7f2b4 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -1985,6 +1985,8 @@ static void l2cap_ack_timeout(struct work_struct *work) struct l2cap_chan *chan = container_of(work, struct l2cap_chan, ack_timer.work); + BT_DBG("chan %p", chan); + lock_sock(chan->sk); l2cap_send_ack(chan); release_sock(chan->sk); |