sched: Make task dump print all 15 chars of proc comm
authorErik Gilling <konkers@android.com>
Sat, 20 Nov 2010 02:08:51 +0000 (18:08 -0800)
committerIngo Molnar <mingo@elte.hu>
Tue, 23 Nov 2010 09:29:07 +0000 (10:29 +0100)
Signed-off-by: Erik Gilling <konkers@android.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <1290218934-8544-3-git-send-email-john.stultz@linaro.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched.c

index 550cf3a02377ff38cd7fa8b4923ad904c62581e1..324afce0e2238f146d120c4f7dd39874fcc78635 100644 (file)
@@ -5249,7 +5249,7 @@ void sched_show_task(struct task_struct *p)
        unsigned state;
 
        state = p->state ? __ffs(p->state) + 1 : 0;
-       printk(KERN_INFO "%-13.13s %c", p->comm,
+       printk(KERN_INFO "%-15.15s %c", p->comm,
                state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
 #if BITS_PER_LONG == 32
        if (state == TASK_RUNNING)
This page took 0.030145 seconds and 5 git commands to generate.