Commit 903d343e authored by Gustavo F. Padovan's avatar Gustavo F. Padovan

Bluetooth: Add L2CAP mode to debugfs output

Signed-off-by: default avatarGustavo F. Padovan <padovan@profusion.mobi>
parent c531a12a
......@@ -3766,12 +3766,13 @@ static int l2cap_debugfs_show(struct seq_file *f, void *p)
sk_for_each(sk, node, &l2cap_sk_list.head) {
struct l2cap_pinfo *pi = l2cap_pi(sk);
seq_printf(f, "%s %s %d %d 0x%4.4x 0x%4.4x %d %d %d\n",
seq_printf(f, "%s %s %d %d 0x%4.4x 0x%4.4x %d %d %d %d\n",
batostr(&bt_sk(sk)->src),
batostr(&bt_sk(sk)->dst),
sk->sk_state, __le16_to_cpu(pi->psm),
pi->scid, pi->dcid,
pi->imtu, pi->omtu, pi->sec_level);
pi->imtu, pi->omtu, pi->sec_level,
pi->mode);
}
read_unlock_bh(&l2cap_sk_list.lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment