HomeSort by: relevance | last modified time | path
    Searched refs:dirty_size (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/ufs/chfs/
chfs_erase.c 86 dirty = cheb->dirty_size;
109 KASSERT(cheb->dirty_size == 0);
chfs_nodeops.c 291 if (cheb->used_size + cheb->free_size + cheb->dirty_size +
295 cheb->used_size, cheb->free_size, cheb->dirty_size,
297 cheb->dirty_size + cheb->unchecked_size + cheb->wasted_size,
316 if (cheb->used_size + cheb->free_size + cheb->dirty_size +
320 cheb->used_size, cheb->free_size, cheb->dirty_size,
322 cheb->dirty_size + cheb->unchecked_size + cheb->wasted_size,
395 } else if (cheb->dirty_size > MAX_DIRTY_TO_CLEAN &&
396 cheb->dirty_size - len <= MAX_DIRTY_TO_CLEAN) {
401 } else if (VERY_DIRTY(chmp, cheb->dirty_size) &&
402 !VERY_DIRTY(chmp, cheb->dirty_size - len))
    [all...]
chfs_scan.c 172 KASSERT(cheb->used_size + cheb->free_size + cheb->dirty_size + cheb->unchecked_size + cheb->wasted_size == chmp->chm_ebh->eb_size);
202 KASSERT(cheb->used_size + cheb->free_size + cheb->dirty_size +
273 KASSERT(cheb->used_size + cheb->free_size + cheb->dirty_size + cheb->unchecked_size + cheb->wasted_size == chmp->chm_ebh->eb_size);
411 else if (cheb->dirty_size < MAX_DIRTY_TO_CLEAN)
592 KASSERT(cheb->used_size + cheb->free_size + cheb->dirty_size +
chfs_vnode.c 362 KASSERT((int)(cheb->dirty_size + change) >= 0);
363 KASSERT((int)(cheb->dirty_size + change) <= chmp->chm_ebh->eb_size);
365 cheb->dirty_size += change;
chfs_gc.c 546 gcblock_dirty = eb->dirty_size;
647 if (eb->dirty_size == gcblock_dirty &&
665 dbg_gc("eb dirty size = %u\n", chmp->chm_gcblock->dirty_size);
671 chmp->chm_gcblock->dirty_size +
678 if (chmp->chm_gcblock && chmp->chm_gcblock->dirty_size +
chfs.h 301 uint32_t dirty_size; /* size of obsoleted nodes */ member in struct:chfs_eraseblock
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_surface.c 2071 size_t dirty_size, acc_size; local in function:vmw_surface_dirty_alloc
2088 dirty_size = sizeof(*dirty) + num_subres * sizeof(dirty->boxes[0]);
2089 acc_size = ttm_round_pot(dirty_size);
2098 dirty = kvzalloc(dirty_size, GFP_KERNEL);

Completed in 16 milliseconds