Luna/kernel/src/fs/ext2/Inode.cpp
apio 62ac42ffc3
All checks were successful
continuous-integration/drone/pr Build is passing
kernel/Ext2: Read the root inode metadata from the disk
2023-06-21 21:32:28 +02:00

14 lines
264 B
C++

#include "fs/ext2/Inode.h"
namespace Ext2
{
Inode::Inode(Badge<FileSystem>, FileSystem* fs) : m_fs(fs)
{
}
Result<usize> Inode::read(u8* /*buf*/, usize /*offset*/, usize /*length*/) const
{
fail("FIXME: Ext2::Inode::read()");
}
}