Double the maximum data size limit on powerpc64. Now it is 32 GB
authorbluhm <bluhm@openbsd.org>
Wed, 19 May 2021 18:42:59 +0000 (18:42 +0000)
committerbluhm <bluhm@openbsd.org>
Wed, 19 May 2021 18:42:59 +0000 (18:42 +0000)
and the same as amd64.  The machines have large amounts of memory.
discussed with kettenis@

sys/arch/powerpc64/include/vmparam.h

index 0a7d4f8..5606142 100644 (file)
@@ -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 */