]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
Bluetooth: debug: Add debug to l2cap_security_cfm
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>
Tue, 10 Jul 2012 12:27:51 +0000 (15:27 +0300)
committerGustavo Padovan <gustavo.padovan@collabora.co.uk>
Tue, 10 Jul 2012 18:42:07 +0000 (15:42 -0300)
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
net/bluetooth/l2cap_core.c

index c2d6981bb97faf29ff90516babd5eb4b109a1c05..9fd05993f5b44a6855e37078a6ba2dd189f80888 100644 (file)
@@ -5379,7 +5379,7 @@ int l2cap_security_cfm(struct hci_conn *hcon, u8 status, u8 encrypt)
        if (!conn)
                return 0;
 
-       BT_DBG("conn %p", conn);
+       BT_DBG("conn %p status 0x%2.2x encrypt %u", conn, status, encrypt);
 
        if (hcon->type == LE_LINK) {
                if (!status && encrypt)
@@ -5392,7 +5392,8 @@ int l2cap_security_cfm(struct hci_conn *hcon, u8 status, u8 encrypt)
        list_for_each_entry(chan, &conn->chan_l, list) {
                l2cap_chan_lock(chan);
 
-               BT_DBG("chan->scid %d", chan->scid);
+               BT_DBG("chan %p scid 0x%4.4x state %s", chan, chan->scid,
+                      state_to_string(chan->state));
 
                if (chan->scid == L2CAP_CID_LE_DATA) {
                        if (!status && encrypt) {