Home | History | Annotate | Download | only in newfs_ext2fs

Lines Matching defs:inodes_per_cg

188 	uint blocks_gd, blocks_per_cg, inodes_per_cg, iblocks_per_cg;
303 inodes_per_cg = num_inodes / ncg;
304 iblocks_per_cg = howmany(inodesize * inodes_per_cg, bsize);
330 inodes_per_cg = num_inodes / ncg;
332 /* roundup inodes_per_cg to make it use whole inode table blocks */
333 inodes_per_cg = roundup(inodes_per_cg, sblock.e2fs_ipb);
334 num_inodes = inodes_per_cg * ncg;
335 iblocks_per_cg = inodes_per_cg / sblock.e2fs_ipb;
353 sblock.e2fs.e2fs_ipg = inodes_per_cg;