x86, apic: Fix spurious error interrupts triggering on all non-boot APs
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / mips / mm / extable.c
blob9d25d2ba4b9ea8b0157bea763fa314a6556227f6
1 /*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
6 * Copyright (C) 1997, 99, 2001 - 2004 Ralf Baechle <ralf@linux-mips.org>
7 */
8 #include <linux/module.h>
9 #include <linux/spinlock.h>
10 #include <asm/branch.h>
11 #include <asm/uaccess.h>
13 int fixup_exception(struct pt_regs *regs)
15 const struct exception_table_entry *fixup;
17 fixup = search_exception_tables(exception_epc(regs));
18 if (fixup) {
19 regs->cp0_epc = fixup->nextinsn;
21 return 1;
24 return 0;