diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-25 11:14:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-25 11:14:17 +0000 |
commit | a837e08e3febb5620920b855ae00e03b1bf3bc03 (patch) | |
tree | e23e3e5cf06811b7960c005eee019ecc8f39e07b /sys/arch/i386/include/param.h | |
parent | 613ad0c8bdad3b3a6f611f37b4fa86e5b8ffe88c (diff) |
grow kvm space; fix an over-agressive pmap optimization
Diffstat (limited to 'sys/arch/i386/include/param.h')
-rw-r--r-- | sys/arch/i386/include/param.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/i386/include/param.h b/sys/arch/i386/include/param.h index 7fdea524187..4e7f087db1c 100644 --- a/sys/arch/i386/include/param.h +++ b/sys/arch/i386/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.3 1996/04/18 19:21:38 niklas Exp $ */ +/* $OpenBSD: param.h,v 1.4 1996/10/25 11:14:15 deraadt Exp $ */ /* $NetBSD: param.h,v 1.29 1996/03/04 05:04:26 cgd Exp $ */ /*- @@ -70,9 +70,11 @@ #define PGOFSET (NBPG-1) /* byte offset into page */ #define NPTEPG (NBPG/(sizeof (pt_entry_t))) -#define KERNBASE 0xf8000000 /* start of kernel virtual space */ +#define KERNBASE 0xf0000000 /* start of kernel virtual space */ +#if 0 #define KERNSIZE 0x01800000 /* size of kernel virtual space */ -#define KERNTEXTOFF 0xf8100000 /* start of kernel text */ +#endif +#define KERNTEXTOFF 0xf0100000 /* start of kernel text */ #define BTOPKERNBASE ((u_long)KERNBASE >> PGSHIFT) #define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */ |