summaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/process_32.c
diff options
context:
space:
mode:
authorPaul Mundt2008-11-26 07:20:35 +0100
committerPaul Mundt2008-12-22 10:43:49 +0100
commit75fd24c1073adcd1e8ea43048d946bbfa34dfc64 (patch)
tree659d229467650dfdbbc58a967062ba608552c235 /arch/sh/kernel/process_32.c
parentsh: Add a simple code dumper for SUPERH32 show_regs(). (diff)
downloadkernel-qcow2-linux-75fd24c1073adcd1e8ea43048d946bbfa34dfc64.tar.gz
kernel-qcow2-linux-75fd24c1073adcd1e8ea43048d946bbfa34dfc64.tar.xz
kernel-qcow2-linux-75fd24c1073adcd1e8ea43048d946bbfa34dfc64.zip
sh: Tidy up backtrace formatting with kallsyms disabled.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/process_32.c')
-rw-r--r--arch/sh/kernel/process_32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/kernel/process_32.c b/arch/sh/kernel/process_32.c
index 57de3f168102..908731c49afb 100644
--- a/arch/sh/kernel/process_32.c
+++ b/arch/sh/kernel/process_32.c
@@ -115,8 +115,8 @@ void machine_power_off(void)
void show_regs(struct pt_regs * regs)
{
printk("\n");
- printk("Pid : %d, Comm: %20s\n", task_pid_nr(current), current->comm);
- printk("CPU : %d %s (%s %.*s)\n",
+ printk("Pid : %d, Comm: \t\t%s\n", task_pid_nr(current), current->comm);
+ printk("CPU : %d \t\t%s (%s %.*s)\n\n",
smp_processor_id(), print_tainted(), init_utsname()->release,
(int)strcspn(init_utsname()->version, " "),
init_utsname()->version);