kern: reduce KMemoryRegionAllocator slab size

This commit is contained in:
Michael Scire 2020-12-01 17:31:21 -08:00
parent 8936e4d5d9
commit 6cc21e4d98

View file

@ -23,7 +23,7 @@ namespace ams::kern {
NON_COPYABLE(KMemoryRegionAllocator); NON_COPYABLE(KMemoryRegionAllocator);
NON_MOVEABLE(KMemoryRegionAllocator); NON_MOVEABLE(KMemoryRegionAllocator);
public: public:
static constexpr size_t MaxMemoryRegions = 1000; static constexpr size_t MaxMemoryRegions = 200;
private: private:
KMemoryRegion region_heap[MaxMemoryRegions]; KMemoryRegion region_heap[MaxMemoryRegions];
size_t num_regions; size_t num_regions;