diff options
author | Mike Galbraith <efault@gmx.de> | 2007-10-15 11:00:08 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-10-15 11:00:08 -0400 |
commit | c86da3a3d40f6e7a032edfaea191fb51e9626c8f (patch) | |
tree | e8593b4406c9af2d0e4c54d71e1ce6f2a659c453 /kernel/sched_debug.c | |
parent | ef83a5714d9a817b2e9b97f04a6d070fbd6ecf80 (diff) |
sched: fix formatting of /proc/sched_debug
fix formatting of /proc/sched_debug
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.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/sched_debug.c b/kernel/sched_debug.c index e2c1e0dfdf50..4eaaf96559d6 100644 --- a/kernel/sched_debug.c +++ b/kernel/sched_debug.c | |||
@@ -67,7 +67,7 @@ print_task(struct seq_file *m, struct rq *rq, struct task_struct *p) | |||
67 | (long long)(p->nvcsw + p->nivcsw), | 67 | (long long)(p->nvcsw + p->nivcsw), |
68 | p->prio); | 68 | p->prio); |
69 | #ifdef CONFIG_SCHEDSTATS | 69 | #ifdef CONFIG_SCHEDSTATS |
70 | SEQ_printf(m, "%15Ld.%06ld %15Ld.%06ld %15Ld.%06ld\n", | 70 | SEQ_printf(m, "%9Ld.%06ld %9Ld.%06ld %9Ld.%06ld\n", |
71 | SPLIT_NS(p->se.vruntime), | 71 | SPLIT_NS(p->se.vruntime), |
72 | SPLIT_NS(p->se.sum_exec_runtime), | 72 | SPLIT_NS(p->se.sum_exec_runtime), |
73 | SPLIT_NS(p->se.sum_sleep_runtime)); | 73 | SPLIT_NS(p->se.sum_sleep_runtime)); |
@@ -83,10 +83,10 @@ static void print_rq(struct seq_file *m, struct rq *rq, int rq_cpu) | |||
83 | 83 | ||
84 | SEQ_printf(m, | 84 | SEQ_printf(m, |
85 | "\nrunnable tasks:\n" | 85 | "\nrunnable tasks:\n" |
86 | " task PID tree-key switches prio" | 86 | " task PID tree-key switches prio" |
87 | " exec-runtime sum-exec sum-sleep\n" | 87 | " exec-runtime sum-exec sum-sleep\n" |
88 | "------------------------------------------------------" | 88 | "------------------------------------------------------" |
89 | "------------------------------------------------"); | 89 | "----------------------------------------------------\n"); |
90 | 90 | ||
91 | read_lock_irq(&tasklist_lock); | 91 | read_lock_irq(&tasklist_lock); |
92 | 92 | ||