diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-20 21:41:53 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-20 21:58:55 +0100 |
commit | e0b81ee4c9630ab343b72e4d946f620473b56b7b (patch) | |
tree | 58312fca21a4b55d4cfeb1ff58c85257f4728e88 /Kernel/Ext2FileSystem.h | |
parent | 266e77259e8359862144b00ea02cc0dd8db86a2a (diff) | |
download | serenity-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.h | 2 |
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; }; |