diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-07-03 08:30:00 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2011-11-14 12:11:14 -0500 |
commit | 0f1f2df6472d1787539c3a94b850266ef4891034 (patch) | |
tree | ae54547ecc1cf60686485ec112c9f4160a5b7aa9 | |
parent | 11e0acc616e3a8cd6ea8440b9ead33f6a017e456 (diff) | |
download | linux-rt-0f1f2df6472d1787539c3a94b850266ef4891034.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/posix-cpu-timers.c b/kernel/posix-cpu-timers.c index 17336ab91c31..fb350d745241 100644 --- a/kernel/posix-cpu-timers.c +++ b/kernel/posix-cpu-timers.c @@ -1479,7 +1479,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; |