diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 2007-03-29 03:17:32 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 2007-03-29 03:17:32 +0000 |
commit | c23f99ea6c00d612b0f53a31db1d5309cef744bc (patch) | |
tree | 7fa0a04956c20fe163029259818c526337971688 | |
parent | 05b8517c6746998927e1b122845d477c6859d4f6 (diff) |
Equiv diff to amd64 as was done on i386, bump VM_PHYSSEG_MAX. Amd64 are
PCs too...
Tested by dlg@ and brad.
-rw-r--r-- | sys/arch/amd64/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/vmparam.h b/sys/arch/amd64/include/vmparam.h index 60801e382a5..37a98f0a33d 100644 --- a/sys/arch/amd64/include/vmparam.h +++ b/sys/arch/amd64/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.5 2005/12/13 00:18:19 jsg Exp $ */ +/* $OpenBSD: vmparam.h,v 1.6 2007/03/29 03:17:31 weingart Exp $ */ /* $NetBSD: vmparam.h,v 1.1 2003/04/26 18:39:49 fvdl Exp $ */ /*- @@ -99,7 +99,7 @@ /* virtual sizes (bytes) for various kernel submaps */ #define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE) -#define VM_PHYSSEG_MAX 5 /* 1 "hole" + 4 free lists */ +#define VM_PHYSSEG_MAX 16 /* actually we could have this many segments */ #define VM_PHYSSEG_STRAT VM_PSTRAT_BIGFIRST #define VM_PHYSSEG_NOADD /* can't add RAM after vm_mem_init */ |