mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-03 06:40:05 +00:00
Kernel: Use KString instead of String in Ext2FSInode's lookup cache
This commit is contained in:
parent
7356110033
commit
77a81f5eed
Notes:
sideshowbarker
2024-07-17 20:31:41 +09:00
Author: https://github.com/IdanHo
Commit: 77a81f5eed
Pull-request: https://github.com/SerenityOS/serenity/pull/12037
2 changed files with 9 additions and 7 deletions
|
@ -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 {};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue