From 0cb074dc73c1eb4203b124430de278f234617f72 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 1 Jan 2019 02:52:21 +0100 Subject: [PATCH] Ext2FS: On second thought, let's not uncache the Ext2FSInodes today.. --- VirtualFileSystem/Ext2FileSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VirtualFileSystem/Ext2FileSystem.cpp b/VirtualFileSystem/Ext2FileSystem.cpp index af7e223ae45..4eeb566344c 100644 --- a/VirtualFileSystem/Ext2FileSystem.cpp +++ b/VirtualFileSystem/Ext2FileSystem.cpp @@ -988,5 +988,5 @@ String Ext2FSInode::reverse_lookup(InodeIdentifier child_id) void Ext2FSInode::one_retain_left() { - fs().m_inode_cache.remove(index()); + // FIXME: I would like to not live forever, but uncached Ext2FS is fucking painful right now. }