Bluetooth: Use %pMR instead of baswap in seq_show
Use new bluetooth address print specifier %pMR for printing bluetooth addresses instead of dedicated variable and baswap. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
This commit is contained in:
parent
fcb73338ed
commit
7028a8860f
@ -569,7 +569,6 @@ static int bt_seq_show(struct seq_file *seq, void *v)
|
|||||||
{
|
{
|
||||||
struct bt_seq_state *s = seq->private;
|
struct bt_seq_state *s = seq->private;
|
||||||
struct bt_sock_list *l = s->l;
|
struct bt_sock_list *l = s->l;
|
||||||
bdaddr_t src_baswapped, dst_baswapped;
|
|
||||||
|
|
||||||
if (v == SEQ_START_TOKEN) {
|
if (v == SEQ_START_TOKEN) {
|
||||||
seq_puts(seq ,"sk RefCnt Rmem Wmem User Inode Src Dst Parent");
|
seq_puts(seq ,"sk RefCnt Rmem Wmem User Inode Src Dst Parent");
|
||||||
@ -583,18 +582,17 @@ static int bt_seq_show(struct seq_file *seq, void *v)
|
|||||||
} else {
|
} else {
|
||||||
struct sock *sk = sk_entry(v);
|
struct sock *sk = sk_entry(v);
|
||||||
struct bt_sock *bt = bt_sk(sk);
|
struct bt_sock *bt = bt_sk(sk);
|
||||||
baswap(&src_baswapped, &bt->src);
|
|
||||||
baswap(&dst_baswapped, &bt->dst);
|
|
||||||
|
|
||||||
seq_printf(seq, "%pK %-6d %-6u %-6u %-6u %-6lu %pM %pM %-6lu",
|
seq_printf(seq,
|
||||||
|
"%pK %-6d %-6u %-6u %-6u %-6lu %pMR %pMR %-6lu",
|
||||||
sk,
|
sk,
|
||||||
atomic_read(&sk->sk_refcnt),
|
atomic_read(&sk->sk_refcnt),
|
||||||
sk_rmem_alloc_get(sk),
|
sk_rmem_alloc_get(sk),
|
||||||
sk_wmem_alloc_get(sk),
|
sk_wmem_alloc_get(sk),
|
||||||
sock_i_uid(sk),
|
sock_i_uid(sk),
|
||||||
sock_i_ino(sk),
|
sock_i_ino(sk),
|
||||||
&src_baswapped,
|
&bt->src,
|
||||||
&dst_baswapped,
|
&bt->dst,
|
||||||
bt->parent? sock_i_ino(bt->parent): 0LU);
|
bt->parent? sock_i_ino(bt->parent): 0LU);
|
||||||
|
|
||||||
if (l->custom_seq_show) {
|
if (l->custom_seq_show) {
|
||||||
|
Loading…
Reference in New Issue
Block a user