Commit 02459164 authored by Dennis Zhou (Facebook)'s avatar Dennis Zhou (Facebook) Committed by Tejun Heo

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: default avatarDennis Zhou <dennisszhou@gmail.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent cd6a884d
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#include "percpu-internal.h" #include "percpu-internal.h"
#define P(X, Y) \ #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 percpu_stats pcpu_stats;
struct pcpu_alloc_info pcpu_stats_ai; struct pcpu_alloc_info pcpu_stats_ai;
...@@ -134,7 +134,7 @@ static int percpu_stats_show(struct seq_file *m, void *v) ...@@ -134,7 +134,7 @@ static int percpu_stats_show(struct seq_file *m, void *v)
} }
#define PL(X) \ #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, seq_printf(m,
"Percpu Memory Statistics\n" "Percpu Memory Statistics\n"
...@@ -151,7 +151,7 @@ static int percpu_stats_show(struct seq_file *m, void *v) ...@@ -151,7 +151,7 @@ static int percpu_stats_show(struct seq_file *m, void *v)
#undef PL #undef PL
#define PU(X) \ #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, seq_printf(m,
"Global Stats:\n" "Global Stats:\n"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment