brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · 91c45d8 Raw
29 lines · plain
1.. SPDX-License-Identifier: GPL-2.02 3Block and inode Bitmaps4-----------------------5 6The data block bitmap tracks the usage of data blocks within the block7group.8 9The inode bitmap records which entries in the inode table are in use.10 11As with most bitmaps, one bit represents the usage status of one data12block or inode table entry. This implies a block group size of 8 *13number_of_bytes_in_a_logical_block.14 15NOTE: If ``BLOCK_UNINIT`` is set for a given block group, various parts16of the kernel and e2fsprogs code pretends that the block bitmap contains17zeros (i.e. all blocks in the group are free). However, it is not18necessarily the case that no blocks are in use -- if ``meta_bg`` is set,19the bitmaps and group descriptor live inside the group. Unfortunately,20ext2fs_test_block_bitmap2() will return '0' for those locations,21which produces confusing debugfs output.22 23Inode Table24-----------25Inode tables are statically allocated at mkfs time.  Each block group26descriptor points to the start of the table, and the superblock records27the number of inodes per group.  See the section on inodes for more28information.29