Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Apr 2012 22:27:21 +0000 (UTC)
From:      Robert Millan <rmh@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r234743 - head/sys/amd64/include
Message-ID:  <201204272227.q3RMRLmI027711@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201204272227.q3RMRLmI027711>