Module Name:    src
Committed By:   chs
Date:           Tue Nov 13 14:10:24 UTC 2012

Modified Files:
        src/sys/arch/amd64/include: vmparam.h
        src/sys/arch/i386/include: vmparam.h

Log Message:
bump VM_PHYSSEG_MAX to 32, we've seen a system where 16 wasn't enough.


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sys/arch/amd64/include/vmparam.h
cvs rdiff -u -r1.75 -r1.76 src/sys/arch/i386/include/vmparam.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/amd64/include/vmparam.h
diff -u src/sys/arch/amd64/include/vmparam.h:1.31 src/sys/arch/amd64/include/vmparam.h:1.32
--- src/sys/arch/amd64/include/vmparam.h:1.31	Wed Aug 15 08:09:57 2012
+++ src/sys/arch/amd64/include/vmparam.h	Tue Nov 13 14:10:24 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: vmparam.h,v 1.31 2012/08/15 08:09:57 sborrill Exp $	*/
+/*	$NetBSD: vmparam.h,v 1.32 2012/11/13 14:10:24 chs Exp $	*/
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -148,7 +148,7 @@
 /* virtual sizes (bytes) for various kernel submaps */
 #define VM_PHYS_SIZE		(USRIOSIZE*PAGE_SIZE)
 
-#define VM_PHYSSEG_MAX		16	/* 1 "hole" + 15 free lists */
+#define VM_PHYSSEG_MAX		32	/* 1 "hole" + 31 free lists */
 #define VM_PHYSSEG_STRAT	VM_PSTRAT_BIGFIRST
 
 #define	VM_NFREELIST		3

Index: src/sys/arch/i386/include/vmparam.h
diff -u src/sys/arch/i386/include/vmparam.h:1.75 src/sys/arch/i386/include/vmparam.h:1.76
--- src/sys/arch/i386/include/vmparam.h:1.75	Wed Aug 15 08:10:28 2012
+++ src/sys/arch/i386/include/vmparam.h	Tue Nov 13 14:10:24 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: vmparam.h,v 1.75 2012/08/15 08:10:28 sborrill Exp $	*/
+/*	$NetBSD: vmparam.h,v 1.76 2012/11/13 14:10:24 chs Exp $	*/
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -127,7 +127,7 @@
 #define	VM_PHYSSEG_MAX		1
 #define	VM_NFREELIST		1
 #else
-#define	VM_PHYSSEG_MAX		16	/* 1 "hole" + 15 free lists */
+#define	VM_PHYSSEG_MAX		32	/* 1 "hole" + 31 free lists */
 #define	VM_NFREELIST		2
 #define	VM_FREELIST_FIRST16	1
 #endif /* XEN */

Reply via email to