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)
committerColin Cross <ccross@android.com>
Thu, 30 Sep 2010 00:49:05 +0000 (17:49 -0700)
Change-Id: I1a5c9676baa06c9f9b4424bbcab01b9b2fbfcd99
Signed-off-by: Erik Gilling <konkers@android.com>
kernel/sched.c

index 2aa4e56acd8918f4eeb070edeae186d20142f20f..bbf29d6dbc5c08c1cb87a0d46d68124188446b86 100644 (file)
@@ -5254,7 +5254,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)