]> Git Repo - J-linux.git/blob - arch/arm/mm/extable.c
mm, x86: Saving vmcore with non-lazy freeing of vmas
[J-linux.git] / arch / arm / mm / extable.c
1 /*
2  *  linux/arch/arm/mm/extable.c
3  */
4 #include <linux/module.h>
5 #include <linux/uaccess.h>
6
7 int fixup_exception(struct pt_regs *regs)
8 {
9         const struct exception_table_entry *fixup;
10
11         fixup = search_exception_tables(instruction_pointer(regs));
12         if (fixup)
13                 regs->ARM_pc = fixup->fixup;
14
15         return fixup != NULL;
16 }
This page took 0.028437 seconds and 4 git commands to generate.