XBF_WRITE        1023 fs/xfs/linux-2.6/xfs_buf.c 	bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
XBF_WRITE        1066 fs/xfs/linux-2.6/xfs_buf.c 		bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC);
XBF_WRITE        1072 fs/xfs/linux-2.6/xfs_buf.c 	bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
XBF_WRITE        1074 fs/xfs/linux-2.6/xfs_buf.c 	bp->b_flags |= flags & (XBF_READ | XBF_WRITE | XBF_ASYNC | \
XBF_WRITE        1083 fs/xfs/linux-2.6/xfs_buf.c 	status = (flags & XBF_WRITE) ?
XBF_WRITE        1165 fs/xfs/linux-2.6/xfs_buf.c 		rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC;
XBF_WRITE        1167 fs/xfs/linux-2.6/xfs_buf.c 		rw = (bp->b_flags & XBF_WRITE) ? WRITE :
XBF_WRITE        1245 fs/xfs/linux-2.6/xfs_buf.c 	if (bp->b_flags & XBF_WRITE) {
XBF_WRITE        1687 fs/xfs/linux-2.6/xfs_buf.c 			bp->b_flags |= XBF_WRITE;
XBF_WRITE         264 fs/xfs/linux-2.6/xfs_buf.h #define XFS_B_WRITE		XBF_WRITE
XBF_WRITE         276 fs/xfs/linux-2.6/xfs_buf.h 		~(XBF_READ|XBF_WRITE|XBF_ASYNC|XBF_DELWRI|XBF_ORDERED))
XBF_WRITE         323 fs/xfs/linux-2.6/xfs_buf.h #define XFS_BUF_WRITE(bp)	((bp)->b_flags |= XBF_WRITE)
XBF_WRITE         324 fs/xfs/linux-2.6/xfs_buf.h #define XFS_BUF_UNWRITE(bp)	((bp)->b_flags &= ~XBF_WRITE)
XBF_WRITE         325 fs/xfs/linux-2.6/xfs_buf.h #define XFS_BUF_ISWRITE(bp)	((bp)->b_flags & XBF_WRITE)
XBF_WRITE         374 fs/xfs/linux-2.6/xfs_buf.h 	return xfs_buf_iostart(bp, XBF_WRITE | XBF_ASYNC | _XBF_RUN_QUEUES);