diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-03-15 17:56:07 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-03-15 17:56:07 +0000 |
commit | 5acaf03d8ad999f7eb9b2503d7fd1406de169916 (patch) | |
tree | e823da8f551e52ee18b33b12c9615dd310c9a7ac | |
parent | 335b05d8a4d7730f74a76267e60a66cdefa14922 (diff) |
allow for more physmem segments; as required by some dell from dhill@
-rw-r--r-- | sys/arch/i386/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/vmparam.h b/sys/arch/i386/include/vmparam.h index 48a81ce48f1..43edd842463 100644 --- a/sys/arch/i386/include/vmparam.h +++ b/sys/arch/i386/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.33 2005/11/23 16:51:28 mickey Exp $ */ +/* $OpenBSD: vmparam.h,v 1.34 2006/03/15 17:56:06 mickey Exp $ */ /* $NetBSD: vmparam.h,v 1.15 1994/10/27 04:16:34 cgd Exp $ */ /*- @@ -100,7 +100,7 @@ /* virtual sizes (bytes) for various kernel submaps */ #define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE) -#define VM_PHYSSEG_MAX 4 /* actually we could have this many segments */ +#define VM_PHYSSEG_MAX 5 /* actually we could have this many segments */ #define VM_PHYSSEG_STRAT VM_PSTRAT_BSEARCH #define VM_PHYSSEG_NOADD /* can't add RAM after vm_mem_init */ |