Commit e8c7391d authored by Andi Kleen's avatar Andi Kleen Committed by Andi Kleen

[PATCH] Don't use kernel_text_address in oops context

Because it can take spinlocks.

Suggested by Mathieu Desnoyers

Cc: Mathieu Desnoyers <compudj@krystal.dyndns.org>
Signed-off-by: default avatarAndi Kleen <ak@suse.de>
parent 3566561b
...@@ -299,7 +299,9 @@ void dump_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long * s ...@@ -299,7 +299,9 @@ void dump_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long * s
#define HANDLE_STACK(cond) \ #define HANDLE_STACK(cond) \
do while (cond) { \ do while (cond) { \
unsigned long addr = *stack++; \ unsigned long addr = *stack++; \
if (kernel_text_address(addr)) { \ if (oops_in_progress ? \
__kernel_text_address(addr) : \
kernel_text_address(addr)) { \
/* \ /* \
* If the address is either in the text segment of the \ * If the address is either in the text segment of the \
* kernel, or in the region which contains vmalloc'ed \ * kernel, or in the region which contains vmalloc'ed \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment