Lines Matching refs:xflags
2444 b_xflags_t xflags; in flushbuflist() local
2464 xflags = nbp->b_xflags & (BX_VNDIRTY | BX_VNCLEAN); in flushbuflist()
2500 != xflags) in flushbuflist()
2716 buf_vlist_find_or_add(struct buf *bp, struct bufobj *bo, b_xflags_t xflags) in buf_vlist_find_or_add() argument
2725 KASSERT((xflags & BX_VNDIRTY) == 0 || (bo->bo_flag & BO_DEAD) == 0, in buf_vlist_find_or_add()
2727 KASSERT((bp->b_xflags & (BX_VNDIRTY | BX_VNCLEAN)) == xflags, in buf_vlist_find_or_add()
2728 ("buf_vlist_add: b_xflags %#x not set on bp %p", xflags, bp)); in buf_vlist_find_or_add()
2730 if (xflags & BX_VNDIRTY) in buf_vlist_find_or_add()
2778 buf_vlist_add(struct buf *bp, struct bufobj *bo, b_xflags_t xflags) in buf_vlist_add() argument
2784 bp->b_xflags |= xflags; in buf_vlist_add()
2785 error = buf_vlist_find_or_add(bp, bo, xflags); in buf_vlist_add()