Home | History | Annotate | Download | only in resize

Lines Matching defs:new_fs

58 	ext2_filsys 		new_fs;
191 retval = ext2fs_dup_handle(fs, &new_fs);
207 new_fs->super->s_feature_incompat &= ~EXT4_FEATURE_INCOMPAT_FLEX_BG;
208 retval = adjust_fs_info(new_fs, fs, 0, *new_size);
229 i < new_fs->group_desc_count; i++) {
231 overhead = (int) (2 + new_fs->inode_blocks_per_group);
233 if (ext2fs_bg_has_super(new_fs, new_fs->group_desc_count - 1))
234 overhead += 1 + new_fs->desc_blocks +
235 new_fs->super->s_reserved_gdt_blocks;
238 input.block_bitmap = ext2fs_block_bitmap_loc(new_fs, i);
239 input.inode_bitmap = ext2fs_inode_bitmap_loc(new_fs, i);
240 input.inode_table = ext2fs_inode_table_loc(new_fs, i);
241 input.blocks_count = ext2fs_group_blocks_count(new_fs, i);
250 input.inode_table + new_fs->inode_blocks_per_group-1);
255 ext2fs_bg_free_blocks_count(new_fs, i),
257 ext2fs_bg_free_inodes_count(new_fs, i),
258 new_fs->inode_blocks_per_group);
284 ext2fs_free(new_fs);