Ver código fonte

Ext2FS: On second thought, let's not uncache the Ext2FSInodes today..

Andreas Kling 6 anos atrás
pai
commit
0cb074dc73
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      VirtualFileSystem/Ext2FileSystem.cpp

+ 1 - 1
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.
 }