Module Name: src
Committed By: matt
Date: Fri Dec 24 07:11:25 UTC 2010
Modified Files:
src/sys/arch/mips/mips [matt-nb5-mips64]: db_interface.c
Log Message:
Just use the generic tlb_read_indexed instead of the mips1 specific version.
To generate a diff of this commit:
cvs rdiff -u -r1.64.16.16 -r1.64.16.17 src/sys/arch/mips/mips/db_interface.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/db_interface.c
diff -u src/sys/arch/mips/mips/db_interface.c:1.64.16.16 src/sys/arch/mips/mips/db_interface.c:1.64.16.17
--- src/sys/arch/mips/mips/db_interface.c:1.64.16.16 Mon Feb 1 04:16:19 2010
+++ src/sys/arch/mips/mips/db_interface.c Fri Dec 24 07:11:25 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: db_interface.c,v 1.64.16.16 2010/02/01 04:16:19 matt Exp $ */
+/* $NetBSD: db_interface.c,v 1.64.16.17 2010/12/24 07:11:25 matt Exp $ */
/*
* Mach Operating System
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.64.16.16 2010/02/01 04:16:19 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.64.16.17 2010/12/24 07:11:25 matt Exp $");
#include "opt_cputype.h" /* which mips CPUs do we support? */
#include "opt_ddb.h"
@@ -252,7 +252,7 @@
int i;
for (i = 0; i < mips_options.mips_num_tlb_entries; i++) {
- mips1_tlb_read_indexed(i, &tlb);
+ tlb_read_indexed(i, &tlb);
db_printf("TLB%c%2d Hi 0x%08x Lo 0x%08x",
(tlb.tlb_lo1 & MIPS1_PG_V) ? ' ' : '*',
i, tlb.tlb_hi,