Lines Matching refs:ifree
54 uint64_t ifree;
309 fsc->ifree = 0;
325 fsc->ifree += pag->pagi_freecount;
367 trace_xchk_fscounters_calc(mp, fsc->icount, fsc->ifree, fsc->fdblocks,
374 fsc->ifree > fsc->icount_max)
378 * If ifree > icount then we probably had some perturbation in the
380 * to maintain ifree <= icount before giving up.
382 if (fsc->ifree > fsc->icount) {
503 int64_t icount, ifree, fdblocks, frextents;
509 ifree = percpu_counter_sum(&mp->m_ifree);
514 if (icount < 0 || ifree < 0)
547 * If ifree exceeds icount by more than the minimum variance then
550 if (ifree > icount && ifree - icount > XCHK_FSCOUNT_MIN_VARIANCE)
579 if (!xchk_fscount_within_range(sc, ifree, &mp->m_ifree, fsc->ifree)) {