1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00

Ext2FS: Rename get_block_bitmap() => get_bitmap_block()

This can be used for Inode bitmaps as well, so let's rename it.
This commit is contained in:
Andreas Kling 2019-11-02 12:26:20 +01:00
parent 1ae9d85de9
commit e52b7eeccc
2 changed files with 4 additions and 5 deletions

View file

@ -148,8 +148,7 @@ private:
Bitmap bitmap(u32 blocks_per_group) { return Bitmap::wrap(buffer.data(), blocks_per_group); }
};
CachedBitmap& get_block_bitmap(BlockIndex bitmap_block_index);
CachedBitmap& get_inode_bitmap(InodeIndex bitmap_block_index);
CachedBitmap& get_bitmap_block(BlockIndex);
Vector<OwnPtr<CachedBitmap>> m_cached_bitmaps;
};