mirror of https://gitee.com/openkylin/linux.git
m68k/mm: Check for mm != NULL in do_page_fault() debug code
When DEBUG is enabled, do_page_fault() may dereference a NULL pointer, causing recursive bus errors. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
This commit is contained in:
parent
9da4a8d919
commit
4e25c0e92f
|
@ -77,8 +77,7 @@ int do_page_fault(struct pt_regs *regs, unsigned long address,
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
printk ("do page fault:\nregs->sr=%#x, regs->pc=%#lx, address=%#lx, %ld, %p\n",
|
printk ("do page fault:\nregs->sr=%#x, regs->pc=%#lx, address=%#lx, %ld, %p\n",
|
||||||
regs->sr, regs->pc, address, error_code,
|
regs->sr, regs->pc, address, error_code, mm ? mm->pgd : NULL);
|
||||||
current->mm->pgd);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue