Lines Matching refs:ifree
167 fsc->ifree = 0;
181 fsc->ifree += pag->pagi_freecount;
218 trace_xchk_fscounters_calc(mp, fsc->icount, fsc->ifree, fsc->fdblocks,
225 fsc->ifree > fsc->icount_max)
229 * If ifree > icount then we probably had some perturbation in the
231 * to maintain ifree <= icount before giving up.
233 if (fsc->ifree > fsc->icount) {
309 int64_t icount, ifree, fdblocks;
314 ifree = percpu_counter_sum(&mp->m_ifree);
318 if (icount < 0 || ifree < 0 || fdblocks < 0)
330 * If ifree exceeds icount by more than the minimum variance then
333 if (ifree > icount && ifree - icount > XCHK_FSCOUNT_MIN_VARIANCE)
347 if (!xchk_fscount_within_range(sc, ifree, &mp->m_ifree, fsc->ifree))