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
commit e52b7eeccc
Notes: sideshowbarker 2024-07-19 11:28:32 +09:00
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;
};