Searched refs:cg_nextfreeoff (Results 1 – 8 of 8) sorted by relevance
/freebsd/sbin/fsck_ffs/ |
H A D | pass5.c | 130 newcg->cg_nextfreeoff = newcg->cg_freeoff + blkmapsize; in pass5() 132 newcg->cg_clustersumoff = newcg->cg_nextfreeoff - in pass5() 138 newcg->cg_nextfreeoff = newcg->cg_clusteroff + in pass5() 142 mapsize = newcg->cg_nextfreeoff - newcg->cg_iusedoff; in pass5()
|
H A D | fsutil.c | 1046 CHK(cgp->cg_nextfreeoff, !=, in check_cgmagic() 1056 CHK(cgp->cg_nextfreeoff, !=, cgp->cg_clusteroff + in check_cgmagic() 1104 cgp->cg_nextfreeoff = cgp->cg_freeoff + howmany(sblock.fs_fpg,CHAR_BIT); in rebuild_cg() 1108 roundup(cgp->cg_nextfreeoff, sizeof(u_int32_t)); in rebuild_cg() 1112 cgp->cg_nextfreeoff = cgp->cg_clusteroff + in rebuild_cg()
|
/freebsd/usr.sbin/makefs/ffs/ |
H A D | ffs_bswap.c | 223 n->cg_nextfreeoff = bswap32(o->cg_nextfreeoff); in ffs_cg_swap()
|
H A D | mkfs.c | 676 acg.cg_nextfreeoff = acg.cg_freeoff + in initcg() 685 acg.cg_nextfreeoff = acg.cg_clusteroff + in initcg() 688 if (acg.cg_nextfreeoff > (uint32_t)sblock.fs_cgsize) { in initcg()
|
/freebsd/sbin/newfs/ |
H A D | mkfs.c | 749 acg.cg_nextfreeoff = acg.cg_freeoff + howmany(sblock.fs_fpg, CHAR_BIT); in initcg() 752 roundup(acg.cg_nextfreeoff, sizeof(u_int32_t)); in initcg() 756 acg.cg_nextfreeoff = acg.cg_clusteroff + in initcg() 759 if (acg.cg_nextfreeoff > (unsigned)sblock.fs_cgsize) { in initcg() 761 acg.cg_nextfreeoff - (unsigned)sblock.fs_cgsize); in initcg()
|
/freebsd/sbin/growfs/ |
H A D | growfs.c | 348 acg.cg_nextfreeoff = acg.cg_freeoff + howmany(sblock.fs_fpg, CHAR_BIT); in initcg() 351 roundup(acg.cg_nextfreeoff, sizeof(u_int32_t)); in initcg() 355 acg.cg_nextfreeoff = acg.cg_clusteroff + in initcg() 358 if (acg.cg_nextfreeoff > (unsigned)sblock.fs_cgsize) { in initcg()
|
H A D | debug.c | 376 cgr->cg_nextfreeoff); in dbg_dump_cg()
|
/freebsd/sys/ufs/ffs/ |
H A D | fs.h | 615 uint32_t cg_nextfreeoff; /* (uint8) next available space */ 614 uint32_t cg_nextfreeoff; /* (uint8) next available space */ global() member
|