diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sched_debug.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/sched_debug.c b/kernel/sched_debug.c index 1c61e5315ad2..8421b9399e10 100644 --- a/kernel/sched_debug.c +++ b/kernel/sched_debug.c | |||
@@ -36,24 +36,24 @@ print_task(struct seq_file *m, struct rq *rq, struct task_struct *p, u64 now) | |||
36 | else | 36 | else |
37 | SEQ_printf(m, " "); | 37 | SEQ_printf(m, " "); |
38 | 38 | ||
39 | SEQ_printf(m, "%15s %5d %15Ld %13Ld %13Ld %9Ld %5d " | 39 | SEQ_printf(m, "%15s %5d %15Ld %13Ld %13Ld %9Ld %5d ", |
40 | "%15Ld %15Ld %15Ld %15Ld %15Ld\n", | ||
41 | p->comm, p->pid, | 40 | p->comm, p->pid, |
42 | (long long)p->se.fair_key, | 41 | (long long)p->se.fair_key, |
43 | (long long)(p->se.fair_key - rq->cfs.fair_clock), | 42 | (long long)(p->se.fair_key - rq->cfs.fair_clock), |
44 | (long long)p->se.wait_runtime, | 43 | (long long)p->se.wait_runtime, |
45 | (long long)(p->nvcsw + p->nivcsw), | 44 | (long long)(p->nvcsw + p->nivcsw), |
46 | p->prio, | 45 | p->prio); |
47 | #ifdef CONFIG_SCHEDSTATS | 46 | #ifdef CONFIG_SCHEDSTATS |
47 | SEQ_printf(m, "%15Ld %15Ld %15Ld %15Ld %15Ld\n", | ||
48 | (long long)p->se.sum_exec_runtime, | 48 | (long long)p->se.sum_exec_runtime, |
49 | (long long)p->se.sum_wait_runtime, | 49 | (long long)p->se.sum_wait_runtime, |
50 | (long long)p->se.sum_sleep_runtime, | 50 | (long long)p->se.sum_sleep_runtime, |
51 | (long long)p->se.wait_runtime_overruns, | 51 | (long long)p->se.wait_runtime_overruns, |
52 | (long long)p->se.wait_runtime_underruns | 52 | (long long)p->se.wait_runtime_underruns); |
53 | #else | 53 | #else |
54 | 0LL, 0LL, 0LL, 0LL, 0LL | 54 | SEQ_printf(m, "%15Ld %15Ld %15Ld %15Ld %15Ld\n", |
55 | 0LL, 0LL, 0LL, 0LL, 0LL); | ||
55 | #endif | 56 | #endif |
56 | ); | ||
57 | } | 57 | } |
58 | 58 | ||
59 | static void print_rq(struct seq_file *m, struct rq *rq, int rq_cpu, u64 now) | 59 | static void print_rq(struct seq_file *m, struct rq *rq, int rq_cpu, u64 now) |