diff options
author | YU Bo <tsu.yubo@gmail.com> | 2018-05-03 23:09:23 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-05-04 13:00:57 -0400 |
commit | ae552ac2785d69189c865dcea7e71da02180c59c (patch) | |
tree | 915e07c9b76a2355db68d1a56fbb879d721a1e32 | |
parent | d89a2adb8bfe6f8949ff389acdb9fa298b6e8e12 (diff) |
net/netlink: make sure the headers line up actual value output
Making sure the headers line up properly with the actual value output of the command
`cat /proc/net/netlink`
Before the patch:
<sk Eth Pid Groups Rmem Wmem Dump Locks Drops Inode
<ffff8cd2c2f7b000 0 909 00000550 0 0 0 2 0 18946
After the patch:
>sk Eth Pid Groups Rmem Wmem Dump Locks Drops Inode
>0000000033203952 0 897 00000113 0 0 0 2 0 14906
Signed-off-by: Bo YU <tsu.yubo@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/netlink/af_netlink.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index 55342c4d5cec..2e2dd88fc79f 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c | |||
@@ -2606,13 +2606,13 @@ static int netlink_seq_show(struct seq_file *seq, void *v) | |||
2606 | { | 2606 | { |
2607 | if (v == SEQ_START_TOKEN) { | 2607 | if (v == SEQ_START_TOKEN) { |
2608 | seq_puts(seq, | 2608 | seq_puts(seq, |
2609 | "sk Eth Pid Groups " | 2609 | "sk Eth Pid Groups " |
2610 | "Rmem Wmem Dump Locks Drops Inode\n"); | 2610 | "Rmem Wmem Dump Locks Drops Inode\n"); |
2611 | } else { | 2611 | } else { |
2612 | struct sock *s = v; | 2612 | struct sock *s = v; |
2613 | struct netlink_sock *nlk = nlk_sk(s); | 2613 | struct netlink_sock *nlk = nlk_sk(s); |
2614 | 2614 | ||
2615 | seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n", | 2615 | seq_printf(seq, "%pK %-3d %-10u %08x %-8d %-8d %-5d %-8d %-8d %-8lu\n", |
2616 | s, | 2616 | s, |
2617 | s->sk_protocol, | 2617 | s->sk_protocol, |
2618 | nlk->portid, | 2618 | nlk->portid, |