Release 4.14 arch/m32r/mm/extable.c
// SPDX-License-Identifier: GPL-2.0
/*
* 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 | 94.34% | 2 | 40.00% |
Paul Gortmaker | 1 | 1.89% | 1 | 20.00% |
Linus Torvalds | 1 | 1.89% | 1 | 20.00% |
Greg Kroah-Hartman | 1 | 1.89% | 1 | 20.00% |
Total | 53 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.