Home
last modified time | relevance | path

Searched refs:cstotal (Results 1 – 2 of 2) sorted by relevance

/freebsd/sbin/fsck_ffs/
H A Dpass5.c59 struct csum_total cstotal; in pass5() local
146 memset(&cstotal, 0, sizeof(struct csum_total)); in pass5()
328 cstotal.cs_nffree += cg->cg_cs.cs_nffree; in pass5()
329 cstotal.cs_nbfree += cg->cg_cs.cs_nbfree; in pass5()
330 cstotal.cs_nifree += cg->cg_cs.cs_nifree; in pass5()
331 cstotal.cs_ndir += cg->cg_cs.cs_ndir; in pass5()
333 cstotal.cs_nffree += newcg->cg_cs.cs_nffree; in pass5()
334 cstotal.cs_nbfree += newcg->cg_cs.cs_nbfree; in pass5()
335 cstotal.cs_nifree += newcg->cg_cs.cs_nifree; in pass5()
336 cstotal.cs_ndir += newcg->cg_cs.cs_ndir; in pass5()
[all …]
/freebsd/sys/ufs/ffs/
H A Dffs_softdep.c2580 struct csum_total cstotal; in softdep_mount() local
2672 bzero(&cstotal, sizeof cstotal); in softdep_mount()
2681 cstotal.cs_nffree += cgp->cg_cs.cs_nffree; in softdep_mount()
2682 cstotal.cs_nbfree += cgp->cg_cs.cs_nbfree; in softdep_mount()
2683 cstotal.cs_nifree += cgp->cg_cs.cs_nifree; in softdep_mount()
2684 cstotal.cs_ndir += cgp->cg_cs.cs_ndir; in softdep_mount()
2689 if (bcmp(&cstotal, &fs->fs_cstotal, sizeof cstotal)) in softdep_mount()
2692 bcopy(&cstotal, in softdep_mount()
[all...]