diff options
-rw-r--r-- | arch/um/kernel/trap.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/um/kernel/trap.c b/arch/um/kernel/trap.c index 8e4daf44e980..34b633ec852f 100644 --- a/arch/um/kernel/trap.c +++ b/arch/um/kernel/trap.c | |||
@@ -219,6 +219,11 @@ unsigned long segv(struct faultinfo fi, unsigned long ip, int is_user, | |||
219 | show_regs(container_of(regs, struct pt_regs, regs)); | 219 | show_regs(container_of(regs, struct pt_regs, regs)); |
220 | panic("Segfault with no mm"); | 220 | panic("Segfault with no mm"); |
221 | } | 221 | } |
222 | else if (!is_user && address < TASK_SIZE) { | ||
223 | show_regs(container_of(regs, struct pt_regs, regs)); | ||
224 | panic("Kernel tried to access user memory at addr 0x%lx, ip 0x%lx", | ||
225 | address, ip); | ||
226 | } | ||
222 | 227 | ||
223 | if (SEGV_IS_FIXABLE(&fi)) | 228 | if (SEGV_IS_FIXABLE(&fi)) |
224 | err = handle_page_fault(address, ip, is_write, is_user, | 229 | err = handle_page_fault(address, ip, is_write, is_user, |