cregit-Linux how code gets into the kernel

Release 4.14 arch/nios2/mm/extable.c

Directory: arch/nios2/mm
/*
 * Copyright (C) 2010, Tobias Klauser <tklauser@distanz.ch>
 * Copyright (C) 2009, Wind River Systems Inc
 *   Implemented by fredrik.markstrom@gmail.com and ivarholmqvist@gmail.com
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */

#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(regs->ea); if (fixup) { regs->ea = fixup->fixup; return 1; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ley Foon Tan45100.00%1100.00%
Total45100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Ley Foon Tan5198.08%150.00%
Paul Gortmaker11.92%150.00%
Total52100.00%2100.00%
Directory: arch/nios2/mm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.