diff options
author | Peter Zijlstra <[email protected]> | 2015-01-05 11:18:12 +0100 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2015-01-14 13:34:22 +0100 |
commit | 5a5375977b721503e4d6b37ab8982902cd2d10b3 (patch) | |
tree | 4f0159b0cd36374d0a5717bf7b39bc3c9401645a | |
parent | 9edfbfed3f544a7830d99b341f0c175995a02950 (diff) |
sched/debug: Print rq->clock_task
We seem to have forgotten adding it to the debug output like
forever... do so now.
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Cc: [email protected]
Cc: Linus Torvalds <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | kernel/sched/debug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/sched/debug.c b/kernel/sched/debug.c index 92cc52001e74..8baaf858d25c 100644 --- a/kernel/sched/debug.c +++ b/kernel/sched/debug.c @@ -305,6 +305,7 @@ do { \ PN(next_balance); SEQ_printf(m, " .%-30s: %ld\n", "curr->pid", (long)(task_pid_nr(rq->curr))); PN(clock); + PN(clock_task); P(cpu_load[0]); P(cpu_load[1]); P(cpu_load[2]); |