1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-17 03:52:09 +00:00

Ext2FS: Move inode freeing logic from ~Ext2FSInode() to Ext2FS::free_inode().

This commit is contained in:
Andreas Kling 2019-01-22 20:48:48 +01:00
parent 05f18febb6
commit 6fb4033709
2 changed files with 20 additions and 15 deletions

View file

@ -107,6 +107,7 @@ private:
bool set_block_allocation_state(GroupIndex, BlockIndex, bool);
void uncache_inode(InodeIndex);
void free_inode(Ext2FSInode&);
unsigned m_blockGroupCount { 0 };