mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +02:00
Kernel: Use KString instead of String in Ext2FSInode's lookup cache
This commit is contained in:
committed by
Andreas Kling
parent
7356110033
commit
77a81f5eed
Notes:
sideshowbarker
2024-07-17 20:31:41 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/77a81f5eed5 Pull-request: https://github.com/SerenityOS/serenity/pull/12037
@@ -73,7 +73,7 @@ private:
|
||||
Ext2FSInode(Ext2FS&, InodeIndex);
|
||||
|
||||
mutable Vector<BlockBasedFileSystem::BlockIndex> m_block_list;
|
||||
mutable HashMap<String, InodeIndex> m_lookup_cache;
|
||||
mutable HashMap<NonnullOwnPtr<KString>, InodeIndex> m_lookup_cache;
|
||||
ext2_inode m_raw_inode {};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user