secgateway/kernel/linux-4.14.83/arch/m32r/mm/extable.c

21 lines
336 B
C
Raw Normal View History

2019-06-11 07:43:23 +00:00
// SPDX-License-Identifier: GPL-2.0
/*
* linux/arch/m32r/mm/extable.c
*/
#include <linux/extable.h>
#include <linux/uaccess.h>
int fixup_exception(struct pt_regs *regs)
{
const struct exception_table_entry *fixup;
fixup = search_exception_tables(regs->bpc);
if (fixup) {
regs->bpc = fixup->fixup;
return 1;
}
return 0;
}