diff options
author | Andreas Kling <kling@serenityos.org> | 2021-12-26 18:45:23 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-26 21:22:59 +0100 |
commit | 43099fb3876dd17953fa7475ced711fe1585c083 (patch) | |
tree | 1697663bde0486f9ab597dc5ccf8f66f16c6305c /Kernel/FileSystem/OpenFileDescription.h | |
parent | 2a5cff232bb5d313545ba46f6640aefda279258d (diff) | |
download | serenity-43099fb3876dd17953fa7475ced711fe1585c083.zip |
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.
Diffstat (limited to 'Kernel/FileSystem/OpenFileDescription.h')
-rw-r--r-- | Kernel/FileSystem/OpenFileDescription.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/FileSystem/OpenFileDescription.h b/Kernel/FileSystem/OpenFileDescription.h index f075be6776..fd86ea4169 100644 --- a/Kernel/FileSystem/OpenFileDescription.h +++ b/Kernel/FileSystem/OpenFileDescription.h @@ -24,7 +24,6 @@ public: }; class OpenFileDescription : public RefCounted<OpenFileDescription> { - MAKE_SLAB_ALLOCATED(OpenFileDescription) public: static ErrorOr<NonnullRefPtr<OpenFileDescription>> try_create(Custody&); static ErrorOr<NonnullRefPtr<OpenFileDescription>> try_create(File&); |