Module Name:    src
Committed By:   matt
Date:           Wed Dec 29 00:42:22 UTC 2010

Modified Files:
        src/sys/arch/mips/mips [matt-nb5-mips64]: wired_map.c

Log Message:
Change to use tlb_write_indexed.


To generate a diff of this commit:
cvs rdiff -u -r1.4.62.1 -r1.4.62.2 src/sys/arch/mips/mips/wired_map.c

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/mips/wired_map.c
diff -u src/sys/arch/mips/mips/wired_map.c:1.4.62.1 src/sys/arch/mips/mips/wired_map.c:1.4.62.2
--- src/sys/arch/mips/mips/wired_map.c:1.4.62.1	Fri Jan 15 06:47:00 2010
+++ src/sys/arch/mips/mips/wired_map.c	Wed Dec 29 00:42:21 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: wired_map.c,v 1.4.62.1 2010/01/15 06:47:00 matt Exp $	*/
+/*	$NetBSD: wired_map.c,v 1.4.62.2 2010/12/29 00:42:21 matt Exp $	*/
 
 /*-
  * Copyright (c) 2005 Tadpole Computer Inc.
@@ -63,7 +63,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wired_map.c,v 1.4.62.1 2010/01/15 06:47:00 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wired_map.c,v 1.4.62.2 2010/12/29 00:42:21 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -157,7 +157,7 @@
 			mips3_wired_map[index].pa1) |
 		    MIPS3_PG_IOPAGE(
 			    PMAP_CCA_FOR_PA(mips3_wired_map[index].pa1));
-	tlb_write_indexed_VPS(MIPS3_TLB_WIRED_UPAGES + index, &tlb);
+	tlb_write_indexed(MIPS3_TLB_WIRED_UPAGES + index, &tlb);
 	return true;
 }
 

Reply via email to