Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28d0686c authored by Erik Gilling's avatar Erik Gilling Committed by Ingo Molnar
Browse files

sched: Make task dump print all 15 chars of proc comm



Signed-off-by: default avatarErik Gilling <konkers@android.com>
Signed-off-by: default avatarJohn Stultz <john.stultz@linaro.org>
Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <1290218934-8544-3-git-send-email-john.stultz@linaro.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 9437178f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)