Lines Matching refs:start_blk
281 ext4_fsblk_t start_blk; in ext4_alloc_group_tables() local
303 start_blk = ext4_group_first_block_no(sb, src_group); in ext4_alloc_group_tables()
304 last_blk = start_blk + group_data[src_group - group].blocks_count; in ext4_alloc_group_tables()
308 start_blk += overhead; in ext4_alloc_group_tables()
322 if (start_blk >= last_blk) in ext4_alloc_group_tables()
324 group_data[bb_index].block_bitmap = start_blk++; in ext4_alloc_group_tables()
325 group = ext4_get_group_number(sb, start_blk - 1); in ext4_alloc_group_tables()
333 if (start_blk >= last_blk) in ext4_alloc_group_tables()
335 group_data[ib_index].inode_bitmap = start_blk++; in ext4_alloc_group_tables()
336 group = ext4_get_group_number(sb, start_blk - 1); in ext4_alloc_group_tables()
347 if (start_blk + itb > last_blk) in ext4_alloc_group_tables()
349 group_data[it_index].inode_table = start_blk; in ext4_alloc_group_tables()
350 group = ext4_get_group_number(sb, start_blk); in ext4_alloc_group_tables()
354 if (start_blk + itb > next_group_start) { in ext4_alloc_group_tables()
356 overhead = start_blk + itb - next_group_start; in ext4_alloc_group_tables()
363 start_blk += EXT4_SB(sb)->s_itb_per_group; in ext4_alloc_group_tables()