aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/metag/mm/extable.c
blob: 3aa90b78b43d4d0a25c53052d358d77ecc41d746 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <linux/extable.h>
#include <linux/uaccess.h>

int fixup_exception(struct pt_regs *regs)
{
	const struct exception_table_entry *fixup;
	unsigned long pc = instruction_pointer(regs);

	fixup = search_exception_tables(pc);
	if (fixup)
		regs->ctx.CurrPC = fixup->fixup;

	return fixup != NULL;
}