blob: 9a97363b65244e735c55f10fd02d513795b9e2be [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
10int 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