summaryrefslogtreecommitdiff
path: root/Kernel/Devices/ConsoleDevice.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-12-28 19:12:22 +0100
committerAndreas Kling <kling@serenityos.org>2021-12-28 21:02:38 +0100
commitac7ce121236b056e49522b539112e50ab987cd11 (patch)
treecbb027e0df58e528dd4bf26b5d2d3e0404124b4e /Kernel/Devices/ConsoleDevice.h
parenta1be1358918505eedbcdb2d5600194c96b8260c7 (diff)
downloadserenity-ac7ce121236b056e49522b539112e50ab987cd11.zip
Kernel: Remove the kmalloc_eternal heap :^)
This was a premature optimization from the early days of SerenityOS. The eternal heap was a simple bump pointer allocator over a static byte array. My original idea was to avoid heap fragmentation and improve data locality, but both ideas were rooted in cargo culting, not data. We would reserve 4 MiB at boot and only ended up using ~256 KiB, wasting the rest. This patch replaces all kmalloc_eternal() usage by regular kmalloc().
Diffstat (limited to 'Kernel/Devices/ConsoleDevice.h')
-rw-r--r--Kernel/Devices/ConsoleDevice.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Devices/ConsoleDevice.h b/Kernel/Devices/ConsoleDevice.h
index 0309e28ff0..1c2e05fae8 100644
--- a/Kernel/Devices/ConsoleDevice.h
+++ b/Kernel/Devices/ConsoleDevice.h
@@ -13,7 +13,6 @@
namespace Kernel {
class ConsoleDevice final : public CharacterDevice {
- AK_MAKE_ETERNAL
friend class DeviceManagement;
public: