linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Michal Hocko <mhocko@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	linux-mm@kvack.org, LKML <linux-kernel@vger.kernel.org>,
	Jann Horn <jann@thejh.net>
Subject: Re: [PATCH] proc, smaps: reduce printing overhead
Date: Thu, 18 Aug 2016 16:26:17 +0200	[thread overview]
Message-ID: <20160818142616.GN30162@dhcp22.suse.cz> (raw)
In-Reply-To: <1471526765.4319.31.camel@perches.com>

On Thu 18-08-16 06:26:05, Joe Perches wrote:
> On Thu, 2016-08-18 at 13:31 +0200, Michal Hocko wrote:
> 
> []
> 
> > diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
> []
> > @@ -721,6 +721,13 @@ void __weak arch_show_smap(struct seq_file *m, struct vm_area_struct *vma)
> >  {
> >  }
> >  
> > +static void print_name_value_kb(struct seq_file *m, const char *name, unsigned long val)
> > +{
> > +	seq_puts(m, name);
> > +	seq_put_decimal_ull(m, 0, val);
> > +	seq_puts(m, " kB\n");
> > +}
> 
> The seq_put_decimal_ull function has different arguments
> in -next, the separator is changed to const char *.
> 
> $ git log --stat -p -1 49f87a2773000ced0c850639975f43134de48342 -- fs/seq_file.c

OK, I haven't noticed that. I can rebase, although I wonder whether the
change is a universal win. Not that the strlen on a short string would
matter but just look at the usage:
     76 " "
      1 "/"
      1 ""
      1 "cpu  "
      1 "intr "
      1 g ? " " : "",
      1 "\nFDSize:\t"
      1 "\nGid:\t"
      1 "\nNgid:\t"
      1 "\nnonvoluntary_ctxt_switches:\t"
      1 "\nPid:\t"
      1 "\nPPid:\t"
      1 "\nSigQ:\t"
      1 "\nTgid:\t"
      1 "\nTracerPid:\t"
      1 "\nUid:\t"
      1 "Seccomp:\t"
      1 "softirq "
     10 "\t"
      1 "Threads:\t"
      1 "voluntary_ctxt_switches:\t"

Most users simply need a single character. Those few could just seq_puts
for the string followed by seq_put_decimal_ull.
 
> Maybe this change in fs/proc/meminfo.c should be
> made into a public function.
> 
> $ git log --stat -p -1  5e27340c20516104c38668e597b3200f339fc64d
> 
> static void show_val_kb(struct seq_file *m, const char *s, unsigned long num)
> +{
> +       char v[32];
> +       static const char blanks[7] = {' ', ' ', ' ', ' ',' ', ' ', ' '};
> +       int len;
> +
> +       len = num_to_str(v, sizeof(v), num << (PAGE_SHIFT - 10));
> +
> +       seq_write(m, s, 16);
> +
> +       if (len > 0) {
> +               if (len < 8)
> +                       seq_write(m, blanks, 8 - len);
> +
> +               seq_write(m, v, len);
> +       }
> +       seq_write(m, " kB\n", 4);
> +}

Uff, this is just ugly as hell, seriously! a) why does it hardcode the
name to be 16 characters max in such a subtle way and b) doesn't it try
to be overly clever when doing that in the caller doesn't cost all that
much? Sure you can save few bytes in the spaces but then I would just
argue to use \t rather than fixed string length.

That being said, I agree that there should be a common helper I just
really dislike the above.

-- 
Michal Hocko
SUSE Labs

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2016-08-18 14:26 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-18 11:31 Michal Hocko
2016-08-18 13:26 ` Joe Perches
2016-08-18 14:26   ` Michal Hocko [this message]
2016-08-18 14:41     ` Joe Perches
2016-08-18 14:41     ` Michal Hocko
2016-08-18 14:46       ` Joe Perches
2016-08-18 14:58         ` Michal Hocko
2016-08-18 15:23           ` Joe Perches
2016-08-18 16:42             ` Michal Hocko
2016-08-19 10:12 ` [PATCH 0/2] fs, proc: optimize smaps output formatting Michal Hocko
2016-08-19 10:12   ` [PATCH 1/2] proc, meminfo: abstract show_val_kb Michal Hocko
2016-08-26  2:54     ` [lkp] [proc, meminfo] dd3b422c11: stderr.Signal#(FPE)caught_by_ps(procps-ng_version#) kernel test robot
2016-08-19 10:13   ` [PATCH 2/2] proc, smaps: reduce printing overhead Michal Hocko
2016-08-19 17:43   ` [PATCH 0/2] fs, proc: optimize smaps output formatting Joe Perches
2016-08-19 20:18     ` Joe Perches
2016-08-20  7:29     ` Michal Hocko
2016-08-20  7:55       ` Joe Perches
2016-08-20  8:00       ` [PATCH 0/2] seq: Speed up /proc/<pid>/smaps Joe Perches
2016-08-20  8:00         ` [PATCH 1/2] seq_file: Add __seq_open_private_bufsize for seq file_operation sizes Joe Perches
2016-08-20  8:00         ` [PATCH 2/2] proc: task_mmu: Reduce output processing cpu time Joe Perches
2016-08-22  7:24           ` Michal Hocko
2016-08-22  8:00             ` Joe Perches
2016-08-22  8:30               ` Joe Perches
2016-08-22 12:09                 ` Michal Hocko
2016-08-23 15:14 ` [PATCH] proc, smaps: reduce printing overhead Michal Hocko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160818142616.GN30162@dhcp22.suse.cz \
    --to=mhocko@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=jann@thejh.net \
    --cc=joe@perches.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox