From c9c8af01f4c2f5461e4bb48f7de0b5fd6fa31a55 Mon Sep 17 00:00:00 2001 From: bluhm Date: Wed, 19 May 2021 18:42:59 +0000 Subject: [PATCH] Double the maximum data size limit on powerpc64. Now it is 32 GB and the same as amd64. The machines have large amounts of memory. discussed with kettenis@ --- sys/arch/powerpc64/include/vmparam.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arch/powerpc64/include/vmparam.h b/sys/arch/powerpc64/include/vmparam.h index 0a7d4f8b753..56061429181 100644 --- a/sys/arch/powerpc64/include/vmparam.h +++ b/sys/arch/powerpc64/include/vmparam.h @@ -12,7 +12,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)32*1024*1024*1024) /* max data size */ #endif #ifndef BRKSIZ #define BRKSIZ ((paddr_t)16*1024*1024*1024) /* heap gap size */ -- 2.20.1