cregit-Linux how code gets into the kernel

Release 4.10 arch/arm/mm/extable.c

Directory: arch/arm/mm
/*
 *  linux/arch/arm/mm/extable.c
 */
#include <linux/module.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 kingrussell king4374.14%150.00%
marc zyngiermarc zyngier1525.86%150.00%
Total58100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
russell kingrussell king4569.23%240.00%
marc zyngiermarc zyngier1523.08%120.00%
pre-gitpre-git57.69%240.00%
Total65100.00%5100.00%
Directory: arch/arm/mm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.