1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-01 12:19:28 +00:00

Increase the size of the heap size available on sparc64 during

operation of "loader".  The dramatic increase in size of
SPA_MAXBLOCKSIZE in r304321 causes the heap space to be exhausted,
so malloc() fails, ultimately leading to a memcpy() with a
destination of 0x0.

MFC after:	3 days
This commit is contained in:
Kurt Lidl 2018-08-22 14:33:57 +00:00
parent 1e814084c9
commit cefee54838
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=338201

View File

@ -77,7 +77,7 @@ __FBSDID("$FreeBSD$");
enum {
HEAPVA = 0x800000,
HEAPSZ = 0x1000000,
HEAPSZ = 0x3000000,
LOADSZ = 0x1000000 /* for kernel and modules */
};