Release 4.11 arch/m32r/mm/extable.c
/*
* 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;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Hirokazu Takata | 45 | 100.00% | 1 | 100.00% |
Total | 45 | 100.00% | 1 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Hirokazu Takata | 50 | 96.15% | 2 | 50.00% |
Linus Torvalds | 1 | 1.92% | 1 | 25.00% |
Paul Gortmaker | 1 | 1.92% | 1 | 25.00% |
Total | 52 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.