From f83a94ca396d55d4fbf76dff7867a30e1e05ecdf Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 28 Jan 2019 22:53:31 +0100 Subject: [PATCH] Kernel: Remove outdated FIXME. --- Kernel/KSyms.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Kernel/KSyms.cpp b/Kernel/KSyms.cpp index 4a89206fee..fb9321764b 100644 --- a/Kernel/KSyms.cpp +++ b/Kernel/KSyms.cpp @@ -29,8 +29,6 @@ const KSym* ksymbolicate(dword address) static void load_ksyms_from_data(const ByteBuffer& buffer) { - // FIXME: It's gross that this vector grows dynamically rather than being sized-to-fit. - // We're wasting that eternal kmalloc memory. auto* bufptr = (const char*)buffer.pointer(); auto* start_of_name = bufptr; dword address = 0;