Home | History | Annotate | Download | only in ext2fs

Lines Matching defs:bg

106 	struct ext2_group_desc *bg = fs->group_desc;
117 for (i = 0; i < fs->group_desc_count; i++, bg++) {
118 int old_csum = bg->bg_checksum;
119 int old_unused = bg->bg_itable_unused;
120 int old_flags = bg->bg_flags;
122 if (bg->bg_free_inodes_count == sb->s_inodes_per_group) {
123 bg->bg_flags |= EXT2_BG_INODE_UNINIT;
124 bg->bg_itable_unused = sb->s_inodes_per_group;
126 bg->bg_flags &= ~EXT2_BG_INODE_UNINIT;
127 bg->bg_itable_unused = sb->s_inodes_per_group -
133 if (old_flags != bg->bg_flags)
135 if (old_unused != bg->bg_itable_unused)
137 if (old_csum != bg->bg_checksum)