Searched refs:inodeblks (Results 1 – 1 of 1) sorted by relevance
186 uint64_t inodeblks, cgall; in mkfs() local384 inodeblks = howmany(num_inodes, FFS_INOPB(&sblock)); in mkfs()392 inodeblks = (sblock.fs_size - sblock.fs_iblkno) / in mkfs()395 if (inodeblks == 0) in mkfs()396 inodeblks = 1; in mkfs()398 if (inodeblks > (uint64_t)(sblock.fs_size - sblock.fs_iblkno)/sblock.fs_frag - 2) in mkfs()399 inodeblks = (sblock.fs_size-sblock.fs_iblkno)/sblock.fs_frag-2; in mkfs()401 if (inodeblks * FFS_INOPB(&sblock) >= 1ull << 31) in mkfs()402 inodeblks = ((1ull << 31) - NBBY) / FFS_INOPB(&sblock); in mkfs()408 cgall = CGSIZE_IF(&sblock, inodeblks * FFS_INOPB(&sblock), sblock.fs_size); in mkfs()[all …]