1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

Ext2FS: Remove the inode cache lock in favor of one big lock instead.

This commit is contained in:
Andreas Kling 2019-02-20 21:41:53 +01:00
parent 266e77259e
commit e0b81ee4c9
2 changed files with 6 additions and 12 deletions

View file

@ -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;
};