summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom <tomut@yahoo.com>2020-08-10 09:47:09 -0600
committerAndreas Kling <kling@serenityos.org>2020-08-10 20:05:18 +0200
commitfcaa45f97bce3130641b3cccf2dacbdb2e75f87e (patch)
tree6823db05aa30c67e80909973be1623bf1ba53521
parent08ff25f4efeb3a676d9607b440b12915c94bf060 (diff)
downloadserenity-fcaa45f97bce3130641b3cccf2dacbdb2e75f87e.zip
Kernel: Include the 128 byte slab allocator in for_each_allocator
-rw-r--r--Kernel/Heap/SlabAllocator.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Heap/SlabAllocator.cpp b/Kernel/Heap/SlabAllocator.cpp
index e0ecff38c1..2308e290d9 100644
--- a/Kernel/Heap/SlabAllocator.cpp
+++ b/Kernel/Heap/SlabAllocator.cpp
@@ -123,6 +123,7 @@ void for_each_allocator(Callback callback)
callback(s_slab_allocator_16);
callback(s_slab_allocator_32);
callback(s_slab_allocator_64);
+ callback(s_slab_allocator_128);
}
void slab_alloc_init()