Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dlufs_log.c325 if ((newbp = cb->cb_free) != NULL) { in push_dirty_bp()
326 cb->cb_free = newbp->b_forw; in push_dirty_bp()
460 bp->b_forw = cb->cb_free; in alloc_wrbuf()
461 cb->cb_free = bp; in alloc_wrbuf()
470 bp = cb->cb_free; in alloc_wrbuf()
471 cb->cb_free = bp->b_forw; in alloc_wrbuf()
562 while ((bp = cb->cb_free) != NULL) { in free_cirbuf()
563 cb->cb_free = bp->b_forw; in free_cirbuf()
730 bpforw->b_forw = cb->cb_free; in extend_write_bp()
731 cb->cb_free = bpforw; in extend_write_bp()
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dufs_log.h127 buf_t *cb_free; /* free bufs list */ member