Lines Matching defs:xflags
2443 b_xflags_t xflags;
2463 xflags = nbp->b_xflags & (BX_VNDIRTY | BX_VNCLEAN);
2499 != xflags)
2715 buf_vlist_find_or_add(struct buf *bp, struct bufobj *bo, b_xflags_t xflags)
2724 KASSERT((xflags & BX_VNDIRTY) == 0 || (bo->bo_flag & BO_DEAD) == 0,
2726 KASSERT((bp->b_xflags & (BX_VNDIRTY | BX_VNCLEAN)) == xflags,
2727 ("buf_vlist_add: b_xflags %#x not set on bp %p", xflags, bp));
2729 if (xflags & BX_VNDIRTY)
2774 * NOTE: xflags is passed as a constant, optimizing this inline function!
2777 buf_vlist_add(struct buf *bp, struct bufobj *bo, b_xflags_t xflags)
2782 ("buf_vlist_add: Buf %p has existing xflags %d", bp, bp->b_xflags));
2783 bp->b_xflags |= xflags;
2784 error = buf_vlist_find_or_add(bp, bo, xflags);