diff options
-rw-r--r-- | arch/x86_64/kernel/traps.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/traps.c b/arch/x86_64/kernel/traps.c index fb8486eca1b6..01f2a8d254c2 100644 --- a/arch/x86_64/kernel/traps.c +++ b/arch/x86_64/kernel/traps.c | |||
@@ -299,7 +299,9 @@ void dump_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long * s | |||
299 | #define HANDLE_STACK(cond) \ | 299 | #define HANDLE_STACK(cond) \ |
300 | do while (cond) { \ | 300 | do while (cond) { \ |
301 | unsigned long addr = *stack++; \ | 301 | unsigned long addr = *stack++; \ |
302 | if (kernel_text_address(addr)) { \ | 302 | if (oops_in_progress ? \ |
303 | __kernel_text_address(addr) : \ | ||
304 | kernel_text_address(addr)) { \ | ||
303 | /* \ | 305 | /* \ |
304 | * If the address is either in the text segment of the \ | 306 | * If the address is either in the text segment of the \ |
305 | * kernel, or in the region which contains vmalloc'ed \ | 307 | * kernel, or in the region which contains vmalloc'ed \ |