cregit-Linux how code gets into the kernel

Release 4.11 arch/arm/mm/extable.c

Directory: arch/arm/mm
/*
 *  linux/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->ARM_pc = fixup->fixup; #ifdef CONFIG_THUMB2_KERNEL /* Clear the IT state to avoid nasty surprises in the fixup */ regs->ARM_cpsr &= ~PSR_IT_MASK; #endif } return fixup != NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Russell King4374.14%150.00%
Marc Zyngier1525.86%150.00%
Total58100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Russell King4467.69%233.33%
Marc Zyngier1523.08%116.67%
Linus Torvalds (pre-git)57.69%233.33%
Paul Gortmaker11.54%116.67%
Total65100.00%6100.00%
Directory: arch/arm/mm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.