diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2023-04-28 18:33:23 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2023-04-28 18:33:23 +0000 |
commit | b0ce54c2de568a74ba8618f720c45c10a6532e93 (patch) | |
tree | 656b7e599a567935e95cb68813775aa4a30bf0df /sys/arch/amd64 | |
parent | 3da43c150d0113a0f2a96f1ed87715dff75f07f9 (diff) |
bump MAXDSIZ to 128G on amd64 and 64G on arm64
discussed with kettenis@, ok deraadt@
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/vmparam.h b/sys/arch/amd64/include/vmparam.h index d7b606a1bf6..7d7553e0fd3 100644 --- a/sys/arch/amd64/include/vmparam.h +++ b/sys/arch/amd64/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.23 2023/03/19 20:32:13 kettenis Exp $ */ +/* $OpenBSD: vmparam.h,v 1.24 2023/04/28 18:33:22 robert Exp $ */ /* $NetBSD: vmparam.h,v 1.1 2003/04/26 18:39:49 fvdl Exp $ */ /*- @@ -60,7 +60,7 @@ #define DFLDSIZ ((paddr_t)128*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ -#define MAXDSIZ ((paddr_t)32*1024*1024*1024) /* max data size */ +#define MAXDSIZ ((paddr_t)128*1024*1024*1024) /* max data size */ #endif #ifndef BRKSIZ #define BRKSIZ ((paddr_t)8*1024*1024*1024) /* heap gap size */ |