Commit d822cecedad88b69a7d68aa8d49e1f238aa320c7
1 parent
67e9fb2a39
Exists in
master
and in
39 other branches
sched debug: more width for parameter printouts
more width for parameter printouts in /proc/sched_debug. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
kernel/sched_debug.c
... | ... | @@ -204,9 +204,9 @@ |
204 | 204 | SEQ_printf(m, "now at %Lu.%06ld msecs\n", SPLIT_NS(now)); |
205 | 205 | |
206 | 206 | #define P(x) \ |
207 | - SEQ_printf(m, " .%-30s: %Ld\n", #x, (long long)(x)) | |
207 | + SEQ_printf(m, " .%-40s: %Ld\n", #x, (long long)(x)) | |
208 | 208 | #define PN(x) \ |
209 | - SEQ_printf(m, " .%-30s: %Ld.%06ld\n", #x, SPLIT_NS(x)) | |
209 | + SEQ_printf(m, " .%-40s: %Ld.%06ld\n", #x, SPLIT_NS(x)) | |
210 | 210 | PN(sysctl_sched_latency); |
211 | 211 | PN(sysctl_sched_min_granularity); |
212 | 212 | PN(sysctl_sched_wakeup_granularity); |