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/arm64/include | |
parent | 3da43c150d0113a0f2a96f1ed87715dff75f07f9 (diff) |
bump MAXDSIZ to 128G on amd64 and 64G on arm64
discussed with kettenis@, ok deraadt@
Diffstat (limited to 'sys/arch/arm64/include')
-rw-r--r-- | sys/arch/arm64/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm64/include/vmparam.h b/sys/arch/arm64/include/vmparam.h index af4f674efd6..45551c8ddb8 100644 --- a/sys/arch/arm64/include/vmparam.h +++ b/sys/arch/arm64/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.8 2023/03/19 20:32:13 kettenis Exp $ */ +/* $OpenBSD: vmparam.h,v 1.9 2023/04/28 18:33:22 robert Exp $ */ /* $NetBSD: vmparam.h,v 1.1 2003/04/26 18:39:49 fvdl Exp $ */ /*- @@ -52,7 +52,7 @@ #define DFLDSIZ ((paddr_t)512*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ -#define MAXDSIZ ((paddr_t)16*1024*1024*1024) /* max data size */ +#define MAXDSIZ ((paddr_t)64*1024*1024*1024) /* max data size */ #endif #ifndef BRKSIZ #define BRKSIZ ((paddr_t)16*1024*1024*1024) /* heap gap size */ |