M7350/kernel/arch/arm/mm/extable.c

22 lines
451 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
* linux/arch/arm/mm/extable.c
*/
#include <linux/module.h>
#include <linux/uaccess.h>
int fixup_exception(struct pt_regs *regs)
{
const struct exception_table_entry *fixup;
fixup = search_exception_tables(instruction_pointer(regs));
2024-09-09 08:57:42 +00:00
if (fixup) {
2024-09-09 08:52:07 +00:00
regs->ARM_pc = fixup->fixup;
2024-09-09 08:57:42 +00:00
#ifdef CONFIG_THUMB2_KERNEL
/* Clear the IT state to avoid nasty surprises in the fixup */
regs->ARM_cpsr &= ~PSR_IT_MASK;
#endif
}
2024-09-09 08:52:07 +00:00
return fixup != NULL;
}