Module Name:    src
Committed By:   matt
Date:           Fri Dec 24 07:16:50 UTC 2010

Modified Files:
        src/sys/arch/mips/include [matt-nb5-mips64]: asm.h

Log Message:
MIPS_LOCK_RAS_SIZE needs to be 256 since each RAS need 64 bytes and we can
have 4 of them.


To generate a diff of this commit:
cvs rdiff -u -r1.40.38.12 -r1.40.38.13 src/sys/arch/mips/include/asm.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/mips/include/asm.h
diff -u src/sys/arch/mips/include/asm.h:1.40.38.12 src/sys/arch/mips/include/asm.h:1.40.38.13
--- src/sys/arch/mips/include/asm.h:1.40.38.12	Mon Feb 15 03:12:17 2010
+++ src/sys/arch/mips/include/asm.h	Fri Dec 24 07:16:50 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: asm.h,v 1.40.38.12 2010/02/15 03:12:17 matt Exp $	*/
+/*	$NetBSD: asm.h,v 1.40.38.13 2010/12/24 07:16:50 matt Exp $	*/
 
 /*
  * Copyright (c) 1992, 1993
@@ -617,7 +617,7 @@
 #endif
 
 /* See lock_stubs.S. */
-#define	MIPS_LOCK_RAS_SIZE	128
+#define	MIPS_LOCK_RAS_SIZE	(4*64)
 
 #define	CPUVAR(off) _C_LABEL(cpu_info_store)+__CONCAT(CPU_INFO_,off)
 

Reply via email to