Home | History | Annotate | Download | only in ext4_utils

Lines Matching defs:sb

120     struct ext4_super_block sb;
150 read_sb(fd, &sb);
153 sb.s_desc_size |= 1;
156 sb.s_desc_size &= ~1;
160 write_sb(fd, 1024, &sb);
267 struct ext4_super_block sb;
272 read_sb(fd, &sb);
276 total_new_inodes = num_block_groups * (new_inodes_per_group - sb.s_inodes_per_group);
285 aux_info.bg_desc[i].bg_free_inodes_count += (new_inodes_per_group - sb.s_inodes_per_group);
291 if ((sb.s_inodes_count + total_new_inodes) != (new_inodes_per_group * num_block_groups)) {
299 sb.s_inodes_count += total_new_inodes;
300 sb.s_free_inodes_count += total_new_inodes;
301 sb.s_inodes_per_group = new_inodes_per_group;
314 sb.s_block_group_nr = i;
319 sb.s_desc_size &= ~1;
327 &sb);
720 if (((aux_info.sb->s_desc_size & ~1) != sizeof(struct ext2_group_desc)) &&
721 ((aux_info.sb->s_desc_size & ~1) != 0))