mirror of
https://github.com/RGBCube/serenity
synced 2025-06-30 14:22:07 +00:00
Kernel: Use KString instead of String in Ext2FSInode's lookup cache
This commit is contained in:
parent
7356110033
commit
77a81f5eed
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