From 1270a44dc2078db2e7e03da93c08d79b19629124 Mon Sep 17 00:00:00 2001 From: kurt Date: Tue, 16 Mar 2021 18:04:16 +0000 Subject: [PATCH] Bump MAXTSIZ to 256MB on i386. okay deraadt@ --- sys/arch/i386/include/vmparam.h | 4 ++-- 1 file 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 -- 2.20.1