artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c417a9
)
Double the maximum data size limit on powerpc64. Now it is 32 GB
author
bluhm
<bluhm@openbsd.org>
Wed, 19 May 2021 18:42:59 +0000
(18:42 +0000)
committer
bluhm
<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
patch
|
blob
|
history
diff --git
a/sys/arch/powerpc64/include/vmparam.h
b/sys/arch/powerpc64/include/vmparam.h
index
0a7d4f8
..
5606142
100644
(file)
--- 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 */