Release 4.14 arch/sh/mm/extable_32.c
// SPDX-License-Identifier: GPL-2.0
/*
* 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 |
Linus Torvalds (pre-git) | 22 | 48.89% | 1 | 33.33% |
Paul Mundt | 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 | 46.43% | 1 | 12.50% |
Paul Mundt | 23 | 41.07% | 2 | 25.00% |
Ingo Molnar | 3 | 5.36% | 1 | 12.50% |
Linus Torvalds | 2 | 3.57% | 2 | 25.00% |
Greg Kroah-Hartman | 1 | 1.79% | 1 | 12.50% |
Paul Gortmaker | 1 | 1.79% | 1 | 12.50% |
Total | 56 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.