diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-01-30 13:33:24 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 13:33:24 +0100 |
commit | 518edc93f8b29bc3e31a13ced0af27c602feed8f (patch) | |
tree | 2512d525af6c0789fa3e9fff0019e0ccb6062b22 | |
parent | 084662580ddc282f38b31da62af5d75208a59b12 (diff) |
x86: update reliability argument to printk_address
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | arch/x86/mm/fault_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/fault_64.c b/arch/x86/mm/fault_64.c index 2d9e6da2cb3..dd26e680a43 100644 --- a/arch/x86/mm/fault_64.c +++ b/arch/x86/mm/fault_64.c @@ -608,7 +608,7 @@ no_context: else printk(KERN_ALERT "Unable to handle kernel paging request"); printk(" at %016lx RIP: \n" KERN_ALERT, address); - printk_address(regs->ip, regs->bp); + printk_address(regs->ip, 1); dump_pagetable(address); tsk->thread.cr2 = address; tsk->thread.trap_no = 14; |