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>
This commit is contained in:
parent
cd6a884d09
commit
02459164a2
1 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue