Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d822cece authored by Ingo Molnar's avatar Ingo Molnar
Browse files

sched debug: more width for parameter printouts



more width for parameter printouts in /proc/sched_debug.

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Reviewed-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 67e9fb2a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -204,9 +204,9 @@ static int sched_debug_show(struct seq_file *m, void *v)
	SEQ_printf(m, "now at %Lu.%06ld msecs\n", SPLIT_NS(now));

#define P(x) \
	SEQ_printf(m, "  .%-30s: %Ld\n", #x, (long long)(x))
	SEQ_printf(m, "  .%-40s: %Ld\n", #x, (long long)(x))
#define PN(x) \
	SEQ_printf(m, "  .%-30s: %Ld.%06ld\n", #x, SPLIT_NS(x))
	SEQ_printf(m, "  .%-40s: %Ld.%06ld\n", #x, SPLIT_NS(x))
	PN(sysctl_sched_latency);
	PN(sysctl_sched_min_granularity);
	PN(sysctl_sched_wakeup_granularity);