Home | History | Annotate | Download | only in zfs

Lines Matching defs:holds

315 	int64_t holds;
327 holds = refcount_count(&db->db_holds);
330 * Immediate eviction occurs when holds == dirtycnt.
331 * For normal eviction buffers, holds is zero on
336 * test the generic invariant that holds >= dirtycnt.
338 ASSERT3U(holds, >=, db->db_dirtycnt);
341 ASSERT3U(holds, >=, db->db_dirtycnt);
343 ASSERT3U(holds, >, 0);
2672 int64_t holds = refcount_add(&db->db_holds, tag);
2673 ASSERT3S(holds, >, 1);
2727 int64_t holds;
2737 holds = refcount_remove(&db->db_holds, tag);
2738 ASSERT(holds >= 0);
2745 holds == (db->db_level == 0 ? db->db_dirtycnt : 0)) {
2749 if (holds == db->db_dirtycnt &&
2753 if (holds == 0) {
3128 * are active holds and db_data still references it),