Lines Matching refs:first_block
2864 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block); in ext4_check_descriptors() local
2884 last_block = first_block + in ext4_check_descriptors()
2907 if (block_bitmap < first_block || block_bitmap > last_block) { in ext4_check_descriptors()
2929 if (inode_bitmap < first_block || inode_bitmap > last_block) { in ext4_check_descriptors()
2951 if (inode_table < first_block || in ext4_check_descriptors()
2971 first_block += EXT4_BLOCKS_PER_GROUP(sb); in ext4_check_descriptors()
3698 ext4_fsblk_t first_block, last_block, b; in count_overhead() local
3706 first_block = le32_to_cpu(sbi->s_es->s_first_data_block) + in count_overhead()
3708 last_block = first_block + EXT4_BLOCKS_PER_GROUP(sb) - 1; in count_overhead()
3712 if (b >= first_block && b <= last_block) { in count_overhead()
3713 ext4_set_bit(EXT4_B2C(sbi, b - first_block), buf); in count_overhead()
3717 if (b >= first_block && b <= last_block) { in count_overhead()
3718 ext4_set_bit(EXT4_B2C(sbi, b - first_block), buf); in count_overhead()
3722 if (b >= first_block && b + sbi->s_itb_per_group <= last_block) in count_overhead()
3724 int c = EXT4_B2C(sbi, b - first_block); in count_overhead()