Release 4.11 arch/sh/mm/extable_32.c
/*
* linux/arch/sh/mm/extable.c
* Taken from:
* linux/arch/i386/mm/extable.c
*/
#include <linux/extable.h>
#include <linux/uaccess.h>
#include <asm/ptrace.h>
int fixup_exception(struct pt_regs *regs)
{
const struct exception_table_entry *fixup;
fixup = search_exception_tables(regs->pc);
if (fixup) {
regs->pc = fixup->fixup;
return 1;
}
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Paul Mundt | 22 | 48.89% | 1 | 33.33% |
Linus Torvalds (pre-git) | 22 | 48.89% | 1 | 33.33% |
Linus Torvalds | 1 | 2.22% | 1 | 33.33% |
Total | 45 | 100.00% | 3 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 26 | 47.27% | 1 | 14.29% |
Paul Mundt | 23 | 41.82% | 2 | 28.57% |
Ingo Molnar | 3 | 5.45% | 1 | 14.29% |
Linus Torvalds | 2 | 3.64% | 2 | 28.57% |
Paul Gortmaker | 1 | 1.82% | 1 | 14.29% |
Total | 55 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.