aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched_debug.c
diff options
context:
space:
mode:
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 67f95aada4b9..966e9254a655 100644
--- a/kernel/sched_debug.c
+++ b/kernel/sched_debug.c
@@ -280,6 +280,19 @@ static void print_cpu(struct seq_file *m, int cpu)
280 P(cpu_load[2]); 280 P(cpu_load[2]);
281 P(cpu_load[3]); 281 P(cpu_load[3]);
282 P(cpu_load[4]); 282 P(cpu_load[4]);
283#ifdef CONFIG_PREEMPT_RT
284 /* Print rt related rq stats */
285 P(rt.rt_nr_running);
286 P(rt.rt_nr_uninterruptible);
287# ifdef CONFIG_SCHEDSTATS
288 P(rto_schedule);
289 P(rto_schedule_tail);
290 P(rto_wakeup);
291 P(rto_pulled);
292 P(rto_pushed);
293# endif
294#endif
295
283#undef P 296#undef P
284#undef PN 297#undef PN
285 298