diff options
Diffstat (limited to 'arch/x86/kernel/dumpstack_64.c')
| -rw-r--r-- | arch/x86/kernel/dumpstack_64.c | 6 | 
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/x86/kernel/dumpstack_64.c b/arch/x86/kernel/dumpstack_64.c index b653675d528..addb207dab9 100644 --- a/arch/x86/kernel/dumpstack_64.c +++ b/arch/x86/kernel/dumpstack_64.c @@ -249,14 +249,10 @@ void show_regs(struct pt_regs *regs)  {  	int i;  	unsigned long sp; -	const int cpu = smp_processor_id(); -	struct task_struct *cur = current;  	sp = regs->sp; -	printk("CPU %d ", cpu); +	show_regs_print_info(KERN_DEFAULT);  	__show_regs(regs, 1); -	printk(KERN_DEFAULT "Process %s (pid: %d, threadinfo %p, task %p)\n", -	       cur->comm, cur->pid, task_thread_info(cur), cur);  	/*  	 * When in-kernel, we also print out the stack and code at the  |