From: matthieu Date: Tue, 15 Jun 2021 09:52:04 +0000 (+0000) Subject: Increase MAXDSIZ to 16GB. ok kettenis@ X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b5b244d427128cbafd8b560c0445574f8db343c2;p=openbsd Increase MAXDSIZ to 16GB. ok kettenis@ --- diff --git a/sys/arch/riscv64/include/vmparam.h b/sys/arch/riscv64/include/vmparam.h index a84d1fe5d18..22a6fd5c07b 100644 --- a/sys/arch/riscv64/include/vmparam.h +++ b/sys/arch/riscv64/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.3 2021/05/12 01:20:52 jsg Exp $ */ +/* $OpenBSD: vmparam.h,v 1.4 2021/06/15 09:52:04 matthieu Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -53,7 +53,7 @@ #define DFLDSIZ ((paddr_t)128*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ -#define MAXDSIZ ((paddr_t)1*1024*1024*1024) /* max data size */ +#define MAXDSIZ ((paddr_t)16*1024*1024*1024) /* max data size */ #endif #ifndef BRKSIZ #define BRKSIZ ((paddr_t)1*1024*1024*1024) /* heap gap size */