aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/dumpstack_64.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/dumpstack_64.c')
-rw-r--r--arch/x86/kernel/dumpstack_64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/dumpstack_64.c b/arch/x86/kernel/dumpstack_64.c
index 6f1505074db0..563554c90686 100644
--- a/arch/x86/kernel/dumpstack_64.c
+++ b/arch/x86/kernel/dumpstack_64.c
@@ -23,8 +23,8 @@ static int die_counter;
23 23
24void printk_address(unsigned long address, int reliable) 24void printk_address(unsigned long address, int reliable)
25{ 25{
26 printk(" [<%016lx>] %s%pS\n", 26 printk(" [<%p>] %s%pS\n", (void *) address,
27 address, reliable ? "" : "? ", (void *) address); 27 reliable ? "" : "? ", (void *) address);
28} 28}
29 29
30static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack, 30static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,