Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c86da3a3d40f6e7a032edfaea191fb51e9626c8f
Commit:     c86da3a3d40f6e7a032edfaea191fb51e9626c8f
Parent:     ef83a5714d9a817b2e9b97f04a6d070fbd6ecf80
Author:     Mike Galbraith <[EMAIL PROTECTED]>
AuthorDate: Mon Oct 15 17:00:08 2007 +0200
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Mon Oct 15 17:00:08 2007 +0200

    sched: fix formatting of /proc/sched_debug
    
    fix formatting of /proc/sched_debug
    
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Peter Zijlstra <[EMAIL PROTECTED]>
    Reviewed-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 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 e2c1e0d..4eaaf96 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)
                (long long)(p->nvcsw + p->nivcsw),
                p->prio);
 #ifdef CONFIG_SCHEDSTATS
-       SEQ_printf(m, "%15Ld.%06ld %15Ld.%06ld %15Ld.%06ld\n",
+       SEQ_printf(m, "%9Ld.%06ld %9Ld.%06ld %9Ld.%06ld\n",
                SPLIT_NS(p->se.vruntime),
                SPLIT_NS(p->se.sum_exec_runtime),
                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)
 
        SEQ_printf(m,
        "\nrunnable tasks:\n"
-       "            task   PID        tree-key  switches  prio"
-       "    exec-runtime        sum-exec       sum-sleep\n"
+       "            task   PID         tree-key  switches  prio"
+       "     exec-runtime         sum-exec        sum-sleep\n"
        "------------------------------------------------------"
-       "------------------------------------------------");
+       "----------------------------------------------------\n");
 
        read_lock_irq(&tasklist_lock);
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to