[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <tip-28d0686cf7b14e30243096bd874d3f80591ed392@git.kernel.org>
Date: Tue, 23 Nov 2010 10:21:53 GMT
From: tip-bot for Erik Gilling <konkers@...roid.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, john.stultz@...aro.org,
hpa@...or.com, mingo@...hat.com, a.p.zijlstra@...llo.nl,
konkers@...roid.com, tglx@...utronix.de, mingo@...e.hu
Subject: [tip:sched/core] sched: Make task dump print all 15 chars of proc comm
Commit-ID: 28d0686cf7b14e30243096bd874d3f80591ed392
Gitweb: http://git.kernel.org/tip/28d0686cf7b14e30243096bd874d3f80591ed392
Author: Erik Gilling <konkers@...roid.com>
AuthorDate: Fri, 19 Nov 2010 18:08:51 -0800
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Tue, 23 Nov 2010 10:29:07 +0100
sched: Make task dump print all 15 chars of proc comm
Signed-off-by: Erik Gilling <konkers@...roid.com>
Signed-off-by: John Stultz <john.stultz@...aro.org>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@...llo.nl>
LKML-Reference: <1290218934-8544-3-git-send-email-john.stultz@...aro.org>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
kernel/sched.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/sched.c b/kernel/sched.c
index 550cf3a..324afce 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -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)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists