summaryrefslogtreecommitdiff
path: root/Kernel/Ext2FileSystem.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-20 21:41:53 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-20 21:58:55 +0100
commite0b81ee4c9630ab343b72e4d946f620473b56b7b (patch)
tree58312fca21a4b55d4cfeb1ff58c85257f4728e88 /Kernel/Ext2FileSystem.h
parent266e77259e8359862144b00ea02cc0dd8db86a2a (diff)
downloadserenity-e0b81ee4c9630ab343b72e4d946f620473b56b7b.zip
Ext2FS: Remove the inode cache lock in favor of one big lock instead.
Diffstat (limited to 'Kernel/Ext2FileSystem.h')
-rw-r--r--Kernel/Ext2FileSystem.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/Ext2FileSystem.h b/Kernel/Ext2FileSystem.h
index a7af408721..af96a4eb10 100644
--- a/Kernel/Ext2FileSystem.h
+++ b/Kernel/Ext2FileSystem.h
@@ -128,8 +128,6 @@ private:
mutable ByteBuffer m_cached_group_descriptor_table;
mutable Lock m_lock;
-
- mutable Lock m_inode_cache_lock;
mutable HashMap<BlockIndex, RetainPtr<Ext2FSInode>> m_inode_cache;
};