cregit-Linux how code gets into the kernel

Release 4.10 arch/ia64/mm/extable.c

Directory: arch/ia64/mm
/*
 * Kernel exception handling table support.  Derived from arch/alpha/mm/extable.c.
 *
 * Copyright (C) 1998, 1999, 2001-2002, 2004 Hewlett-Packard Co
 *      David Mosberger-Tang <davidm@hpl.hp.com>
 */

#include <linux/uaccess.h>


void ia64_handle_exception (struct pt_regs *regs, const struct exception_table_entry *e) { long fix = (u64) &e->fixup + e->fixup; regs->r8 = -EFAULT; if (fix & 4) regs->r9 = 0; regs->cr_iip = fix & ~0xf; ia64_psr(regs)->ri = fix & 0x3; /* set continuation slot number */ }

Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds5070.42%116.67%
david mosbergerdavid mosberger1723.94%233.33%
ard biesheuvelard biesheuvel22.82%116.67%
pre-gitpre-git11.41%116.67%
bjorn helgaasbjorn helgaas11.41%116.67%
Total71100.00%6100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds5168.00%225.00%
david mosbergerdavid mosberger1824.00%337.50%
pre-gitpre-git34.00%112.50%
ard biesheuvelard biesheuvel22.67%112.50%
bjorn helgaasbjorn helgaas11.33%112.50%
Total75100.00%8100.00%
Directory: arch/ia64/mm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.