aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched_debug.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2007-10-15 11:00:10 -0400
committerIngo Molnar <mingo@elte.hu>2007-10-15 11:00:10 -0400
commit1aa4731eff7dab7bd01747b46f654f449f1cfc2c (patch)
tree43e3717091261e65f07ee694857282b2da196c8a /kernel/sched_debug.c
parentc18b8a7cbcbac46497ee1ce656b0e68197c7581d (diff)
sched debug: print settings
print the current value of all tunables in /proc/sched_debug output. 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>
Diffstat (limited to 'kernel/sched_debug.c')
-rw-r--r--kernel/sched_debug.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/kernel/sched_debug.c b/kernel/sched_debug.c
index b6d0a94d4120..d79e1ec5b06a 100644
--- a/kernel/sched_debug.c
+++ b/kernel/sched_debug.c
@@ -203,6 +203,19 @@ static int sched_debug_show(struct seq_file *m, void *v)
203 203
204 SEQ_printf(m, "now at %Lu.%06ld msecs\n", SPLIT_NS(now)); 204 SEQ_printf(m, "now at %Lu.%06ld msecs\n", SPLIT_NS(now));
205 205
206#define P(x) \
207 SEQ_printf(m, " .%-30s: %Ld\n", #x, (long long)(x))
208#define PN(x) \
209 SEQ_printf(m, " .%-30s: %Ld.%06ld\n", #x, SPLIT_NS(x))
210 PN(sysctl_sched_latency);
211 PN(sysctl_sched_min_granularity);
212 PN(sysctl_sched_wakeup_granularity);
213 PN(sysctl_sched_batch_wakeup_granularity);
214 PN(sysctl_sched_child_runs_first);
215 P(sysctl_sched_features);
216#undef PN
217#undef P
218
206 for_each_online_cpu(cpu) 219 for_each_online_cpu(cpu)
207 print_cpu(m, cpu); 220 print_cpu(m, cpu);
208 221