From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bo YU Subject: [PATCH net 1/1] Modify the seq_puts and seq_printf of af_netlink.c file Date: Mon, 23 Apr 2018 08:51:51 -0400 Message-ID: <20180423125148.GA8716@yubo-2> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Cc: netdev@vger.kernel.org To: davem@davemloft.net, Wang , Berg , Tkhai , Long , Elena Return-path: Received: from mail-pf0-f196.google.com ([209.85.192.196]:37238 "EHLO mail-pf0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754718AbeDWMvy (ORCPT ); Mon, 23 Apr 2018 08:51:54 -0400 Received: by mail-pf0-f196.google.com with SMTP id p6so9216538pfn.4 for ; Mon, 23 Apr 2018 05:51:54 -0700 (PDT) Content-Disposition: inline Sender: netdev-owner@vger.kernel.org List-ID: Modify format output symbol of seq_printf function and adjust blanks in seq_puts function in order to make convenience with command:`cat /proc/net/netlink` Signed-off-by: Bo YU --- net/netlink/af_netlink.c | 6 +++--- 1 file 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) { if (v == SEQ_START_TOKEN) { seq_puts(seq, - "sk Eth Pid Groups " - "Rmem Wmem Dump Locks Drops Inode\n"); + "sk Eth Pid Groups " + "Rmem Wmem Dump Locks Drops Inode\n"); } else { struct sock *s = v; struct netlink_sock *nlk = nlk_sk(s); - seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n", + seq_printf(seq, "%pK %-3d %-10u %08x %-8d %-8d %-5d %-8d %-8d %-8lu\n", s, s->sk_protocol, nlk->portid,