Kernel: Ext2FS now uses Ext2Inodes as cached values

This commit is contained in:
2023-10-25 19:34:00 +03:00
parent 5c51d09309
commit fd1b331b86
3 changed files with 6 additions and 6 deletions

View File

@@ -53,7 +53,7 @@ namespace Kernel
, m_inode(inode)
, m_ino(ino)
{}
static BAN::ErrorOr<BAN::RefPtr<Inode>> create(Ext2FS&, uint32_t);
static BAN::ErrorOr<BAN::RefPtr<Ext2Inode>> create(Ext2FS&, uint32_t);
private:
Ext2FS& m_fs;