svn commit: r234743 - head/sys/amd64/include

Robert Millan rmh at FreeBSD.org
Fri Apr 27 22:27:22 UTC 2012


Author: rmh
Date: Fri Apr 27 22:27:21 2012
New Revision: 234743
URL: http://svn.freebsd.org/changeset/base/234743

Log:
  Increase DFLDSIZ from 128 MiB to 32 GiB.  On amd64 there's plenty of virtual
  memory available, so there is no need to be so conservative about it.
  
  Reviewed by:	arch

Modified:
  head/sys/amd64/include/vmparam.h

Modified: head/sys/amd64/include/vmparam.h
==============================================================================
--- head/sys/amd64/include/vmparam.h	Fri Apr 27 22:23:06 2012	(r234742)
+++ head/sys/amd64/include/vmparam.h	Fri Apr 27 22:27:21 2012	(r234743)
@@ -54,7 +54,7 @@
  */
 #define	MAXTSIZ		(128UL*1024*1024)	/* max text size */
 #ifndef DFLDSIZ
-#define	DFLDSIZ		(128UL*1024*1024)	/* initial data size limit */
+#define	DFLDSIZ		(32768UL*1024*1024)	/* initial data size limit */
 #endif
 #ifndef MAXDSIZ
 #define	MAXDSIZ		(32768UL*1024*1024)	/* max data size */


More information about the svn-src-all mailing list