Module Name: src
Committed By: martin
Date: Sun Jan 27 18:46:11 UTC 2019
Modified Files:
src/sys/arch/amd64/include [netbsd-8]: vmparam.h
Log Message:
Pull up following revision(s) (requested by maxv in ticket #1174):
sys/arch/amd64/include/vmparam.h: revision 1.50
Increase VM_PHYSSEG_MAX from 32 to 64. Saw an example on tech-kern@ of a
heavily fragmented memory map.
To generate a diff of this commit:
cvs rdiff -u -r1.39.6.2 -r1.39.6.3 src/sys/arch/amd64/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.39.6.2 src/sys/arch/amd64/include/vmparam.h:1.39.6.3
--- src/sys/arch/amd64/include/vmparam.h:1.39.6.2 Wed Apr 11 14:37:11 2018
+++ src/sys/arch/amd64/include/vmparam.h Sun Jan 27 18:46:11 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: vmparam.h,v 1.39.6.2 2018/04/11 14:37:11 martin Exp $ */
+/* $NetBSD: vmparam.h,v 1.39.6.3 2019/01/27 18:46:11 martin Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -150,7 +150,7 @@
/* virtual sizes (bytes) for various kernel submaps */
#define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE)
-#define VM_PHYSSEG_MAX 32 /* 1 "hole" + 31 free lists */
+#define VM_PHYSSEG_MAX 64 /* 1 "hole" + 63 free lists */
#define VM_PHYSSEG_STRAT VM_PSTRAT_BIGFIRST
#define VM_NFREELIST 6