This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / arch / m32r / mm / extable.c
1 /*
2  * linux/arch/i386/mm/extable.c
3  */
4
5 #include <linux/config.h>
6 #include <linux/module.h>
7 #include <linux/spinlock.h>
8 #include <asm/uaccess.h>
9
10 int fixup_exception(struct pt_regs *regs)
11 {
12         const struct exception_table_entry *fixup;
13
14         fixup = search_exception_tables(regs->bpc);
15         if (fixup) {
16                 regs->bpc = fixup->fixup;
17                 return 1;
18         }
19
20         return 0;
21 }
22