Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 77b2555b52a894a2e39a42e43d993df875c46a6a 16 lines 310 B view raw
1/* 2 * linux/arch/arm/mm/extable.c 3 */ 4#include <linux/module.h> 5#include <asm/uaccess.h> 6 7int fixup_exception(struct pt_regs *regs) 8{ 9 const struct exception_table_entry *fixup; 10 11 fixup = search_exception_tables(instruction_pointer(regs)); 12 if (fixup) 13 regs->ARM_pc = fixup->fixup; 14 15 return fixup != NULL; 16}