Kernel: Remove all uses of MAKE_SLAB_ALLOCATED()

Objects that were previously allocated via slab_alloc()/slab_dealloc()
now go through kmalloc()/kfree_sized() instead.
This commit is contained in:
Andreas Kling 2021-12-26 18:45:23 +01:00
commit 43099fb387
Notes: sideshowbarker 2024-07-17 22:09:53 +09:00
4 changed files with 0 additions and 5 deletions

View file

@ -32,7 +32,6 @@ class Region final
: public Weakable<Region> {
friend class MemoryManager;
MAKE_SLAB_ALLOCATED(Region)
public:
enum Access : u8 {
None = 0,