提交 70c8abc2 编写于 作者: C Catalin Marinas

arm64: User die() instead of panic() in do_page_fault()

The former gives better error reporting on unhandled permission faults
(introduced by the UAO patches).
Signed-off-by: NCatalin Marinas <catalin.marinas@arm.com>
上级 a7f8de16
......@@ -235,10 +235,10 @@ static int __kprobes do_page_fault(unsigned long addr, unsigned int esr,
if (permission_fault(esr) && (addr < USER_DS)) {
if (get_fs() == KERNEL_DS)
panic("Accessing user space memory with fs=KERNEL_DS");
die("Accessing user space memory with fs=KERNEL_DS", regs, esr);
if (!search_exception_tables(regs->pc))
panic("Accessing user space memory outside uaccess.h routines");
die("Accessing user space memory outside uaccess.h routines", regs, esr);
}
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册