mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
sched: print nr_running and load in /proc/sched_debug
- print nr_running and load information for cfs_rq in /proc/sched_debug Signed-off-by: Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com> Signed-off-by: Dhaval Giani <dhaval@linux.vnet.ibm.com> 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>
This commit is contained in:
parent
72ea22f8fb
commit
545f3b1815
1 changed files with 2 additions and 0 deletions
|
@ -134,6 +134,8 @@ void print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq)
|
||||||
spread0 = min_vruntime - rq0_min_vruntime;
|
spread0 = min_vruntime - rq0_min_vruntime;
|
||||||
SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "spread0",
|
SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "spread0",
|
||||||
SPLIT_NS(spread0));
|
SPLIT_NS(spread0));
|
||||||
|
SEQ_printf(m, " .%-30s: %ld\n", "nr_running", cfs_rq->nr_running);
|
||||||
|
SEQ_printf(m, " .%-30s: %ld\n", "load", cfs_rq->load.weight);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_cpu(struct seq_file *m, int cpu)
|
static void print_cpu(struct seq_file *m, int cpu)
|
||||||
|
|
Loading…
Reference in a new issue