1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 12:15:07 +00:00

Ext2FS: Minor cleanup, remove an unused function

This commit is contained in:
Andreas Kling 2019-11-16 16:58:23 +01:00
parent 84bedd5528
commit 8d4d63d9b6
2 changed files with 1 additions and 8 deletions

View file

@ -5,7 +5,6 @@
#include <Kernel/FileSystem/FileDescription.h>
#include <Kernel/FileSystem/ext2_fs.h>
#include <Kernel/Process.h>
#include <Kernel/RTC.h>
#include <Kernel/UnixTypes.h>
#include <LibC/errno_numbers.h>
@ -55,11 +54,6 @@ bool Ext2FS::flush_super_block()
return true;
}
unsigned Ext2FS::first_block_of_group(GroupIndex group_index) const
{
return super_block().s_first_data_block + (group_index * super_block().s_blocks_per_group);
}
const ext2_group_desc& Ext2FS::group_descriptor(GroupIndex group_index) const
{
// FIXME: Should this fail gracefully somehow?