Lines Matching refs:gdp
296 static void print_bg_opts(struct ext2_group_desc *gdp, int mask, in print_bg_opts() argument
299 if (gdp->bg_flags & mask) { in print_bg_opts()
313 struct ext2_group_desc *gdp; in do_show_super_stats() local
346 gdp = ¤t_fs->group_desc[0]; in do_show_super_stats()
347 for (i = 0; i < current_fs->group_desc_count; i++, gdp++) { in do_show_super_stats()
354 i, gdp->bg_block_bitmap, in do_show_super_stats()
355 gdp->bg_inode_bitmap, gdp->bg_inode_table, in do_show_super_stats()
356 gdp->bg_free_blocks_count, in do_show_super_stats()
357 gdp->bg_free_blocks_count != 1 ? "blocks" : "block", in do_show_super_stats()
358 gdp->bg_free_inodes_count, in do_show_super_stats()
359 gdp->bg_free_inodes_count != 1 ? "inodes" : "inode", in do_show_super_stats()
360 gdp->bg_used_dirs_count, in do_show_super_stats()
361 gdp->bg_used_dirs_count != 1 ? "directories" in do_show_super_stats()
365 gdp->bg_itable_unused, in do_show_super_stats()
366 gdp->bg_itable_unused != 1 ? "inodes":"inode"); in do_show_super_stats()
368 print_bg_opts(gdp, EXT2_BG_INODE_UNINIT, "Inode not init", in do_show_super_stats()
370 print_bg_opts(gdp, EXT2_BG_BLOCK_UNINIT, "Block not init", in do_show_super_stats()
374 first ? " [":", ", gdp->bg_checksum); in do_show_super_stats()