Kernel: Make FileSystem::initialize() return KResult

This forced me to also come up with error codes for a bunch of
situations where we'd previously just panic the kernel.
This commit is contained in:
Andreas Kling
2021-08-14 14:02:47 +02:00
parent 46b93174fc
commit d30d776ca4
21 changed files with 61 additions and 58 deletions

View File

@@ -56,9 +56,9 @@ DevFS::~DevFS()
{
}
bool DevFS::initialize()
KResult DevFS::initialize()
{
return true;
return KSuccess;
}
Inode& DevFS::root_inode()