sched: make task dump print all 15 chars of proc comm
authorErik Gilling <konkers@android.com>
Thu, 5 Nov 2009 20:42:13 +0000 (12:42 -0800)
committerArve Hjønnevåg <arve@android.com>
Thu, 4 Feb 2010 05:26:58 +0000 (21:26 -0800)
Change-Id: I1a5c9676baa06c9f9b4424bbcab01b9b2fbfcd99
Signed-off-by: Erik Gilling <konkers@android.com>
kernel/sched.c

index 4a8163f7eb58aa838600b52847821b79049a3dda..9f11c6c784154725068fdbeee135c1d616eadf1b 100644 (file)
@@ -6877,7 +6877,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)