From: Jun S. <ju...@us...> - 2001-09-16 00:10:39
|
Update of /cvsroot/linux-mips/linux/arch/mips/kernel In directory usw-pr-cvs1:/tmp/cvs-serv28077 Modified Files: fast-sysmips.S Log Message: Comment out ll/sc instructions so that MIPS1 machines can compile with fast-sysmips.S. In the future, we either adopt Ralf's sysmips patch (not out yet) or simply get rid of fast-mips.S because the current version of sysmips.c already take care of both ll/sc and non-ll/sc cases. Index: fast-sysmips.S =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/fast-sysmips.S,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fast-sysmips.S 2001/08/23 19:07:28 1.2 --- fast-sysmips.S 2001/09/16 00:10:34 1.3 *************** *** 25,33 **** .set noreorder ! #if defined(CONFIG_CPU_HAS_LLSC) li t0, MIPS_ATOMIC_SET beq a0, t0, 1f nop - #endif j sys_sysmips nop --- 25,35 ---- .set noreorder ! #if !defined(CONFIG_CPU_HAS_LLSC) ! j sys_sysmips ! nop ! #else li t0, MIPS_ATOMIC_SET beq a0, t0, 1f nop j sys_sysmips nop *************** *** 86,87 **** --- 88,90 ---- li v0, -EFAULT + #endif |