summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/Mount.h
AgeCommit message (Collapse)Author
2021-07-18Kernel/Ext2FS: Cache the root inode in a member variableAndreas Kling
We often get queried for the root inode, and it will always be cached in memory anyway, so let's make Ext2FS::root_inode() fast by keeping the root inode in a dedicated member variable.
2021-07-11Kernel: Use Forward.h headers moreAndreas Kling
2021-07-11Kernel: Make VirtualFileSystem::Mount a top-level classAndreas Kling
And move it to its own compilation unit.