summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2013-01-27 16:12:17 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2013-01-27 16:12:17 +0000
commitc8987c61455f9273ae52231789e2319e20e43942 (patch)
tree02fb85da9da72d59a285660fb1b9b9c514d37200 /sys
parent06c80259664033fa613b1ed7a6cbee347edfd69f (diff)
Bump MAXTSIZ to 128 MB, some binaries are quite large.
Agreed with millert@ and guenther@
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/amd64/include/vmparam.h4
-rw-r--r--sys/arch/i386/include/vmparam.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/amd64/include/vmparam.h b/sys/arch/amd64/include/vmparam.h
index 871bc7ce01c..6a70e082c2f 100644
--- a/sys/arch/amd64/include/vmparam.h
+++ b/sys/arch/amd64/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.15 2011/05/30 22:25:20 oga Exp $ */
+/* $OpenBSD: vmparam.h,v 1.16 2013/01/27 16:12:16 fgsch Exp $ */
/* $NetBSD: vmparam.h,v 1.1 2003/04/26 18:39:49 fvdl Exp $ */
/*-
@@ -55,7 +55,7 @@
/*
* Virtual memory related constants, all in bytes
*/
-#define MAXTSIZ ((paddr_t)64*1024*1024) /* max text size */
+#define MAXTSIZ ((paddr_t)128*1024*1024) /* max text size */
#ifndef DFLDSIZ
#define DFLDSIZ ((paddr_t)128*1024*1024) /* initial data size limit */
#endif
diff --git a/sys/arch/i386/include/vmparam.h b/sys/arch/i386/include/vmparam.h
index 5ec9bffebf5..224e75d89a7 100644
--- a/sys/arch/i386/include/vmparam.h
+++ b/sys/arch/i386/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.48 2011/05/30 22:25:21 oga Exp $ */
+/* $OpenBSD: vmparam.h,v 1.49 2013/01/27 16:12:16 fgsch Exp $ */
/* $NetBSD: vmparam.h,v 1.15 1994/10/27 04:16:34 cgd Exp $ */
/*-
@@ -58,7 +58,7 @@
/*
* Virtual memory related constants, all in bytes
*/
-#define MAXTSIZ (64*1024*1024) /* max text size */
+#define MAXTSIZ (128*1024*1024) /* max text size */
#ifndef DFLDSIZ
#define DFLDSIZ (64*1024*1024) /* initial data size limit */
#endif