summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkurt <kurt@openbsd.org>2021-03-16 18:04:16 +0000
committerkurt <kurt@openbsd.org>2021-03-16 18:04:16 +0000
commit1270a44dc2078db2e7e03da93c08d79b19629124 (patch)
tree28b2c21410663a91c48ab129eac8e6d9e13ce3ce
parentOn i386 don't attempt to map shared libraries in low memory when (diff)
downloadwireguard-openbsd-1270a44dc2078db2e7e03da93c08d79b19629124.tar.xz
wireguard-openbsd-1270a44dc2078db2e7e03da93c08d79b19629124.zip
Bump MAXTSIZ to 256MB on i386.
okay deraadt@
-rw-r--r--sys/arch/i386/include/vmparam.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/vmparam.h b/sys/arch/i386/include/vmparam.h
index d7ff0523b86..5de7d6e27ef 100644
--- a/sys/arch/i386/include/vmparam.h
+++ b/sys/arch/i386/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.56 2018/04/17 15:50:05 otto Exp $ */
+/* $OpenBSD: vmparam.h,v 1.57 2021/03/16 18:04:16 kurt Exp $ */
/* $NetBSD: vmparam.h,v 1.15 1994/10/27 04:16:34 cgd Exp $ */
/*-
@@ -46,7 +46,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 (64*1024*1024) /* initial data size limit */
#endif