diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-09 10:16:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-09 10:16:48 +0000 |
commit | 882a495192e796f87032714b59a8d8e9ff8982f7 (patch) | |
tree | d4c6e969148a735ab56334358f09c72d2ae43196 /sys/arch/i386/include/pmap.h | |
parent | 42e2b2bdc2925323d105f21b59805f27232dd331 (diff) |
allow config file to override NKPDE (yuck)
Diffstat (limited to 'sys/arch/i386/include/pmap.h')
-rw-r--r-- | sys/arch/i386/include/pmap.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/i386/include/pmap.h b/sys/arch/i386/include/pmap.h index 157c6f55b8a..3d032602195 100644 --- a/sys/arch/i386/include/pmap.h +++ b/sys/arch/i386/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.4 1996/05/07 07:22:09 deraadt Exp $ */ +/* $OpenBSD: pmap.h,v 1.5 1996/05/09 10:16:47 deraadt Exp $ */ /* $NetBSD: pmap.h,v 1.23 1996/05/03 19:26:30 christos Exp $ */ /* @@ -68,9 +68,7 @@ */ #define PTDPTDI 0x3df /* ptd entry that points to ptd! */ #define KPTDI 0x3e0 /* start of kernel virtual pde's */ -#ifdef BABY -#define NKPDE 31 -#else +#ifndef NKPDE #define NKPDE 12 #endif #define APTDPTDI 0x3ff /* start of alternate page directory */ |