Release 4.10 arch/m32r/mm/extable.c
/*
* linux/arch/m32r/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(regs->bpc);
if (fixup) {
regs->bpc = fixup->fixup;
return 1;
}
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
hirokazu takata* | hirokazu takata* | 45 | 100.00% | 1 | 100.00% |
| Total | 45 | 100.00% | 1 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
hirokazu takata* | hirokazu takata* | 51 | 98.08% | 2 | 66.67% |
linus torvalds | linus torvalds | 1 | 1.92% | 1 | 33.33% |
| Total | 52 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.