diff options
Diffstat (limited to 'arch/mips/mm/fault.c')
| -rw-r--r-- | arch/mips/mm/fault.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/arch/mips/mm/fault.c b/arch/mips/mm/fault.c index b78f7d913ca4..783ad0065fdf 100644 --- a/arch/mips/mm/fault.c +++ b/arch/mips/mm/fault.c | |||
| @@ -16,8 +16,8 @@ | |||
| 16 | #include <linux/mman.h> | 16 | #include <linux/mman.h> |
| 17 | #include <linux/mm.h> | 17 | #include <linux/mm.h> |
| 18 | #include <linux/smp.h> | 18 | #include <linux/smp.h> |
| 19 | #include <linux/vt_kern.h> /* For unblank_screen() */ | ||
| 20 | #include <linux/module.h> | 19 | #include <linux/module.h> |
| 20 | #include <linux/kprobes.h> | ||
| 21 | 21 | ||
| 22 | #include <asm/branch.h> | 22 | #include <asm/branch.h> |
| 23 | #include <asm/mmu_context.h> | 23 | #include <asm/mmu_context.h> |
| @@ -25,13 +25,14 @@ | |||
| 25 | #include <asm/uaccess.h> | 25 | #include <asm/uaccess.h> |
| 26 | #include <asm/ptrace.h> | 26 | #include <asm/ptrace.h> |
| 27 | #include <asm/highmem.h> /* For VMALLOC_END */ | 27 | #include <asm/highmem.h> /* For VMALLOC_END */ |
| 28 | #include <linux/kdebug.h> | ||
| 28 | 29 | ||
| 29 | /* | 30 | /* |
| 30 | * This routine handles page faults. It determines the address, | 31 | * This routine handles page faults. It determines the address, |
| 31 | * and the problem, and then passes it off to one of the appropriate | 32 | * and the problem, and then passes it off to one of the appropriate |
| 32 | * routines. | 33 | * routines. |
| 33 | */ | 34 | */ |
| 34 | asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long write, | 35 | asmlinkage void __kprobes do_page_fault(struct pt_regs *regs, unsigned long write, |
| 35 | unsigned long address) | 36 | unsigned long address) |
| 36 | { | 37 | { |
| 37 | struct vm_area_struct * vma = NULL; | 38 | struct vm_area_struct * vma = NULL; |
| @@ -47,6 +48,17 @@ asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long write, | |||
| 47 | field, regs->cp0_epc); | 48 | field, regs->cp0_epc); |
| 48 | #endif | 49 | #endif |
| 49 | 50 | ||
| 51 | #ifdef CONFIG_KPROBES | ||
| 52 | /* | ||
| 53 | * This is to notify the fault handler of the kprobes. The | ||
| 54 | * exception code is redundant as it is also carried in REGS, | ||
| 55 | * but we pass it anyhow. | ||
| 56 | */ | ||
| 57 | if (notify_die(DIE_PAGE_FAULT, "page fault", regs, -1, | ||
| 58 | (regs->cp0_cause >> 2) & 0x1f, SIGSEGV) == NOTIFY_STOP) | ||
| 59 | return; | ||
| 60 | #endif | ||
| 61 | |||
| 50 | info.si_code = SEGV_MAPERR; | 62 | info.si_code = SEGV_MAPERR; |
| 51 | 63 | ||
| 52 | /* | 64 | /* |
