diff options
author | 2006-05-31 05:54:09 +0000 | |
---|---|---|
committer | 2006-05-31 05:54:09 +0000 | |
commit | 5a2fa48c38e4bbcef075be02a563f960e67abf4d (patch) | |
tree | 360570e65a3c7c946d339238f782e819e2cb66e8 | |
parent | Remove unused cfdriver field, pointed out by miod@ (diff) | |
download | wireguard-openbsd-5a2fa48c38e4bbcef075be02a563f960e67abf4d.tar.xz wireguard-openbsd-5a2fa48c38e4bbcef075be02a563f960e67abf4d.zip |
Use same defines as on zaurus, need to verify the correct settings here.
again, pointed out by miod@
-rw-r--r-- | sys/arch/armish/armish/armish_machdep.c | 6 |
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]; |