diff options
author | Dennis Zhou (Facebook) <dennisszhou@gmail.com> | 2017-07-15 22:23:07 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2017-07-17 10:45:46 -0400 |
commit | 02459164a27e6cf9577fd12fc3ebed78f8fa767f (patch) | |
tree | d7778a8d558698bb8ae35724fb4a7e1134c51817 /mm/percpu-stats.c | |
parent | cd6a884d09558014d0df5400d78b5c7f40f0a62e (diff) | |
download | linux-02459164a27e6cf9577fd12fc3ebed78f8fa767f.tar.bz2 |
percpu: change the format for percpu_stats output
This makes the debugfs output for percpu_stats a little easier
to read by changing the spacing of the output to be consistent.
Signed-off-by: Dennis Zhou <dennisszhou@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'mm/percpu-stats.c')
-rw-r--r-- | mm/percpu-stats.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/percpu-stats.c b/mm/percpu-stats.c index 0d810443785f..fa0f5de26c68 100644 --- a/mm/percpu-stats.c +++ b/mm/percpu-stats.c @@ -18,7 +18,7 @@ #include "percpu-internal.h" #define P(X, Y) \ - seq_printf(m, " %-24s: %8lld\n", X, (long long int)Y) + seq_printf(m, " %-20s: %12lld\n", X, (long long int)Y) struct percpu_stats pcpu_stats; struct pcpu_alloc_info pcpu_stats_ai; @@ -134,7 +134,7 @@ alloc_buffer: } #define PL(X) \ - seq_printf(m, " %-24s: %8lld\n", #X, (long long int)pcpu_stats_ai.X) + seq_printf(m, " %-20s: %12lld\n", #X, (long long int)pcpu_stats_ai.X) seq_printf(m, "Percpu Memory Statistics\n" @@ -151,7 +151,7 @@ alloc_buffer: #undef PL #define PU(X) \ - seq_printf(m, " %-18s: %14llu\n", #X, (unsigned long long)pcpu_stats.X) + seq_printf(m, " %-20s: %12llu\n", #X, (unsigned long long)pcpu_stats.X) seq_printf(m, "Global Stats:\n" |