kern: fix dynamic calculation of slab heap size

This commit is contained in:
Michael Scire 2020-07-31 02:59:12 -07:00
parent f80eb2c26f
commit 2243c43449

View File

@ -127,10 +127,14 @@ namespace ams::kern::init {
size += util::AlignUp(sizeof(NAME) * (COUNT), alignof(void *)); \
});
/* NOTE: This can't be used right now because we don't have all these types implemented. */
/* Once we do, uncomment the following and stop using the hardcoded size. */
/* Add the size required for each slab. */
FOREACH_SLAB_TYPE(ADD_SLAB_SIZE)
#undef ADD_SLAB_SIZE
/* Add the reserved size. */
size += SlabRegionReservedSize;
return size;
}