Lines Matching refs:first_block
3267 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block); in ext4_check_descriptors() local
3287 last_block = first_block + in ext4_check_descriptors()
3310 if (block_bitmap < first_block || block_bitmap > last_block) { in ext4_check_descriptors()
3332 if (inode_bitmap < first_block || inode_bitmap > last_block) { in ext4_check_descriptors()
3354 if (inode_table < first_block || in ext4_check_descriptors()
3374 first_block += EXT4_BLOCKS_PER_GROUP(sb); in ext4_check_descriptors()
4117 ext4_fsblk_t first_block, last_block, b; in count_overhead() local
4127 first_block = le32_to_cpu(sbi->s_es->s_first_data_block) + in count_overhead()
4129 last_block = first_block + EXT4_BLOCKS_PER_GROUP(sb) - 1; in count_overhead()
4133 if (b >= first_block && b <= last_block) { in count_overhead()
4134 ext4_set_bit(EXT4_B2C(sbi, b - first_block), buf); in count_overhead()
4138 if (b >= first_block && b <= last_block) { in count_overhead()
4139 ext4_set_bit(EXT4_B2C(sbi, b - first_block), buf); in count_overhead()
4143 if (b >= first_block && b + sbi->s_itb_per_group <= last_block) in count_overhead()
4145 int c = EXT4_B2C(sbi, b - first_block); in count_overhead()