"Frank Wille" writes: > Module Name: src > Committed By: phx > Date: Wed Sep 30 20:36:28 UTC 2015 > > Modified Files: > src/sys/arch/amiga/include: vmparam.h > > Log Message: > Reduce MAXDSIZ from 416MB back to 224MB. > Due to limitations by the current pmap implementation our virtual address > space is limited to 512MB. A MAXDSIZ of 416MB would leave only a little bit > more than 30MB for shared objects and heap allocations, so 224MB seems like > a good compromise.
with -current, MAXDSIZ mostly affects the statically allocated .data and .bss sections in the binary, with a small additional amount used as other allocations grow (but are done via mmap.) ie, this should be plenty. .mrg.