cregit-Linux how code gets into the kernel

Release 4.14 arch/arm64/mm/extable.c

Directory: arch/arm64/mm
// SPDX-License-Identifier: GPL-2.0
/*
 * Based on arch/arm/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(instruction_pointer(regs)); if (fixup) regs->pc = (unsigned long)&fixup->fixup + fixup->fixup; return fixup != NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Catalin Marinas4382.69%150.00%
Ard Biesheuvel917.31%150.00%
Total52100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Catalin Marinas4981.67%125.00%
Ard Biesheuvel915.00%125.00%
Paul Gortmaker11.67%125.00%
Greg Kroah-Hartman11.67%125.00%
Total60100.00%4100.00%
Directory: arch/arm64/mm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.