From: Paul M. <le...@us...> - 2001-08-25 06:24:49
|
Update of /cvsroot/linux-mips/linux/arch/mips/kernel In directory usw-pr-cvs1:/tmp/cvs-serv25707/arch/mips/kernel Modified Files: traps.c Log Message: Synced with Ralf's 2.4.8 code. Index: traps.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/traps.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** traps.c 2001/08/21 17:25:35 1.11 --- traps.c 2001/08/25 06:24:45 1.12 *************** *** 384,388 **** epc = (unsigned int *) regs->cp0_epc + ((regs->cp0_cause & CAUSEF_BD) != 0); ! if (!get_user(opcode, epc)) return 0; --- 384,388 ---- epc = (unsigned int *) regs->cp0_epc + ((regs->cp0_cause & CAUSEF_BD) != 0); ! if (!get_user(*opcode, epc)) return 0; |