summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2009-07-03 13:30:00 (GMT)
committerScott Wood <scottwood@freescale.com>2014-05-14 18:38:10 (GMT)
commit28a746a14daedf8bc3f1f1c060b4dd147eb122fc (patch)
tree14f0c6decbf6398db5aceff71a520813d5b92142
parentdae47b59d3bc2488566afe08102abf2c2a109fec (diff)
downloadlinux-fsl-qoriq-28a746a14daedf8bc3f1f1c060b4dd147eb122fc.tar.xz
posix-timers: Shorten posix_cpu_timers/<CPU> kernel thread names
Shorten the softirq kernel thread names because they always overflow the limited comm length, appearing as "posix_cpu_timer" CPU# times. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--kernel/posix-cpu-timers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/posix-cpu-timers.c b/kernel/posix-cpu-timers.c
index 57ce5af..2d1963c 100644
--- a/kernel/posix-cpu-timers.c
+++ b/kernel/posix-cpu-timers.c
@@ -1374,7 +1374,7 @@ static int posix_cpu_thread_call(struct notifier_block *nfb,
switch (action) {
case CPU_UP_PREPARE:
p = kthread_create(posix_cpu_timers_thread, hcpu,
- "posix_cpu_timers/%d",cpu);
+ "posixcputmr/%d",cpu);
if (IS_ERR(p))
return NOTIFY_BAD;
p->flags |= PF_NOFREEZE;