Module Name:    src
Committed By:   joerg
Date:           Mon May  7 16:16:44 UTC 2012

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

Log Message:
Raise per-image text size limit to 256MB. 64MB has seen already, so
provide some margin of grows.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/amd64/include/vmparam.h
cvs rdiff -u -r1.73 -r1.74 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.29 src/sys/arch/amd64/include/vmparam.h:1.30
--- src/sys/arch/amd64/include/vmparam.h:1.29	Tue Jan 10 16:03:17 2012
+++ src/sys/arch/amd64/include/vmparam.h	Mon May  7 16:16:44 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: vmparam.h,v 1.29 2012/01/10 16:03:17 chs Exp $	*/
+/*	$NetBSD: vmparam.h,v 1.30 2012/05/07 16:16:44 joerg Exp $	*/
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -72,7 +72,7 @@
 /*
  * Virtual memory related constants, all in bytes
  */
-#define	MAXTSIZ		(128*1024*1024)		/* max text size */
+#define	MAXTSIZ		(256*1024*1024)		/* max text size */
 #ifndef DFLDSIZ
 #define	DFLDSIZ		(256*1024*1024)		/* initial data size limit */
 #endif
@@ -90,7 +90,7 @@
  * 32bit memory related constants.
  */
 
-#define MAXTSIZ32	(128*1024*1024)
+#define MAXTSIZ32	(256*1024*1024)
 #ifndef DFLDSIZ32
 #define	DFLDSIZ32	(256*1024*1024)		/* initial data size limit */
 #endif

Index: src/sys/arch/i386/include/vmparam.h
diff -u src/sys/arch/i386/include/vmparam.h:1.73 src/sys/arch/i386/include/vmparam.h:1.74
--- src/sys/arch/i386/include/vmparam.h:1.73	Sun Feb 19 10:39:06 2012
+++ src/sys/arch/i386/include/vmparam.h	Mon May  7 16:16:44 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: vmparam.h,v 1.73 2012/02/19 10:39:06 cherry Exp $	*/
+/*	$NetBSD: vmparam.h,v 1.74 2012/05/07 16:16:44 joerg Exp $	*/
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -63,7 +63,7 @@
 /*
  * Virtual memory related constants, all in bytes
  */
-#define	MAXTSIZ		(64*1024*1024)		/* max text size */
+#define	MAXTSIZ		(256*1024*1024)		/* max text size */
 #ifndef DFLDSIZ
 #define	DFLDSIZ		(256*1024*1024)		/* initial data size limit */
 #endif

Reply via email to