Lines Matching defs:add
150 ext4_warning(sb, "Cannot add at group %u (only %u groups)",
226 * ext4_new_flex_group_data is used by 64bit-resize interface to add a flex
1007 * We need to add these reserved backup GDT blocks to the resize inode, so
1086 * Finally we can add each of the reserved backup GDT blocks from
1273 * We will only either add reserved group blocks to a backup group
1700 * Otherwise, we may need to add backup GDT blocks for a sparse group.
1778 ext4_fsblk_t o_blocks_count, ext4_grpblk_t add)
1803 ext4_blocks_count_set(es, o_blocks_count + add);
1804 ext4_free_blocks_count_set(es, ext4_free_blocks_count(es) + add);
1808 o_blocks_count + add);
1809 /* We add the blocks to the bitmap and set the group need init bit */
1810 err = ext4_group_add_blocks(handle, sb, o_blocks_count, add);
1815 o_blocks_count + add);
1846 ext4_grpblk_t add;
1880 add = EXT4_BLOCKS_PER_GROUP(sb) - last;
1882 if (o_blocks_count + add < o_blocks_count) {
1887 if (o_blocks_count + add > n_blocks_count)
1888 add = n_blocks_count - o_blocks_count;
1890 if (o_blocks_count + add < n_blocks_count)
1892 o_blocks_count + add, add);
1895 bh = ext4_sb_bread(sb, o_blocks_count + add - 1, 0);
1902 return ext4_group_extend_no_check(sb, o_blocks_count, add);
2010 ext4_grpblk_t add, offset;
2132 add = n_blocks_count - o_blocks_count;
2134 add = EXT4_C2B(sbi, EXT4_CLUSTERS_PER_GROUP(sb) - (offset + 1));
2135 if (add > 0) {
2136 err = ext4_group_extend_no_check(sb, o_blocks_count, add);