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 v3.10 15 lines 302 B view raw
1 2#include <linux/module.h> 3#include <linux/uaccess.h> 4 5int fixup_exception(struct pt_regs *regs) 6{ 7 const struct exception_table_entry *fixup; 8 unsigned long pc = instruction_pointer(regs); 9 10 fixup = search_exception_tables(pc); 11 if (fixup) 12 regs->ctx.CurrPC = fixup->fixup; 13 14 return fixup != NULL; 15}