XBF_ASYNC         650 fs/xfs/linux-2.6/xfs_buf.c 		} else if (flags & XBF_ASYNC) {
XBF_ASYNC         690 fs/xfs/linux-2.6/xfs_buf.c 	flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD);
XBF_ASYNC         929 fs/xfs/linux-2.6/xfs_buf.c 		bp->b_flags |= XBF_ASYNC;
XBF_ASYNC        1007 fs/xfs/linux-2.6/xfs_buf.c 	    (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) {
XBF_ASYNC        1014 fs/xfs/linux-2.6/xfs_buf.c 	else if (bp->b_flags & XBF_ASYNC)
XBF_ASYNC        1029 fs/xfs/linux-2.6/xfs_buf.c 	if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) {
XBF_ASYNC        1066 fs/xfs/linux-2.6/xfs_buf.c 		bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC);
XBF_ASYNC        1067 fs/xfs/linux-2.6/xfs_buf.c 		bp->b_flags |= flags & (XBF_DELWRI | XBF_ASYNC);
XBF_ASYNC        1072 fs/xfs/linux-2.6/xfs_buf.c 	bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \
XBF_ASYNC        1074 fs/xfs/linux-2.6/xfs_buf.c 	bp->b_flags |= flags & (XBF_READ | XBF_WRITE | XBF_ASYNC | \
XBF_ASYNC        1091 fs/xfs/linux-2.6/xfs_buf.c 	if (!status && !(flags & XBF_ASYNC))
XBF_ASYNC        1588 fs/xfs/linux-2.6/xfs_buf.c 	ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC));
XBF_ASYNC        1771 fs/xfs/linux-2.6/xfs_buf.c 			bp->b_flags &= ~XBF_ASYNC;
XBF_ASYNC         261 fs/xfs/linux-2.6/xfs_buf.h #define XFS_B_ASYNC		XBF_ASYNC
XBF_ASYNC         276 fs/xfs/linux-2.6/xfs_buf.h 		~(XBF_READ|XBF_WRITE|XBF_ASYNC|XBF_DELWRI|XBF_ORDERED))
XBF_ASYNC         306 fs/xfs/linux-2.6/xfs_buf.h #define XFS_BUF_ASYNC(bp)	((bp)->b_flags |= XBF_ASYNC)
XBF_ASYNC         307 fs/xfs/linux-2.6/xfs_buf.h #define XFS_BUF_UNASYNC(bp)	((bp)->b_flags &= ~XBF_ASYNC)
XBF_ASYNC         308 fs/xfs/linux-2.6/xfs_buf.h #define XFS_BUF_ISASYNC(bp)	((bp)->b_flags & XBF_ASYNC)
XBF_ASYNC         374 fs/xfs/linux-2.6/xfs_buf.h 	return xfs_buf_iostart(bp, XBF_WRITE | XBF_ASYNC | _XBF_RUN_QUEUES);
XBF_ASYNC         402 fs/xfs/linux-2.6/xfs_buf.h 	int	iowait = (bp->b_flags & XBF_ASYNC) == 0;
XBF_ASYNC         425 fs/xfs/linux-2.6/xfs_buf.h 	(void)xfs_buf_iostart(bp, XBF_DELWRI | XBF_ASYNC);