summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2006-05-31 05:54:10 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2006-05-31 05:54:10 +0000
commit3a1eafa000c9774f6464dd46913748b9c5a7d2d6 (patch)
treefa428eb5963baecd5e30c0c9d3b841bccffd4673 /sys
parent2d20b23ac7a05246eb3da4d389a32307db1a71df (diff)
Use same defines as on zaurus, need to verify the correct settings here.
again, pointed out by miod@
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/armish/armish/armish_machdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/armish/armish/armish_machdep.c b/sys/arch/armish/armish/armish_machdep.c
index 2402c71a040..57dbcf4bafd 100644
--- a/sys/arch/armish/armish/armish_machdep.c
+++ b/sys/arch/armish/armish/armish_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: armish_machdep.c,v 1.1 2006/05/29 17:13:19 drahn Exp $ */
+/* $OpenBSD: armish_machdep.c,v 1.2 2006/05/31 05:54:09 drahn Exp $ */
/* $NetBSD: lubbock_machdep.c,v 1.2 2003/07/15 00:25:06 lukem Exp $ */
/*
@@ -184,7 +184,7 @@ extern int pmap_debug_level;
#define KERNEL_PT_SYS 0 /* L2 table for mapping zero page */
#define KERNEL_PT_KERNEL 1 /* L2 table for mapping kernel */
-#define KERNEL_PT_KERNEL_NUM 16
+#define KERNEL_PT_KERNEL_NUM 32
/* L2 table for mapping i80312 */
//#define KERNEL_PT_IOPXS (KERNEL_PT_KERNEL + KERNEL_PT_KERNEL_NUM)
@@ -192,7 +192,7 @@ extern int pmap_debug_level;
/* L2 tables for mapping kernel VM */
//#define KERNEL_PT_VMDATA (KERNEL_PT_IOPXS + 1)
#define KERNEL_PT_VMDATA (KERNEL_PT_KERNEL + KERNEL_PT_KERNEL_NUM)
-#define KERNEL_PT_VMDATA_NUM 4 /* start with 16MB of KVM */
+#define KERNEL_PT_VMDATA_NUM 8 /* start with 16MB of KVM */
#define NUM_KERNEL_PTS (KERNEL_PT_VMDATA + KERNEL_PT_VMDATA_NUM)
pv_addr_t kernel_pt_table[NUM_KERNEL_PTS];