diff options
author | Dave Chinner <david@fromorbit.com> | 2010-02-04 10:09:14 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2010-02-04 10:09:14 +1100 |
commit | 5322892d867e186c6b4c5fff5c99ea4863696a60 (patch) | |
tree | 2d4168ac5a62d0d27e5bcfef021b56a20aa875a7 /fs/xfs/linux-2.6/xfs_buf.c | |
parent | 07fec73625dc0db6f9aed68019918208a2ca53f5 (diff) | |
download | blackbird-op-linux-5322892d867e186c6b4c5fff5c99ea4863696a60.tar.gz blackbird-op-linux-5322892d867e186c6b4c5fff5c99ea4863696a60.zip |
xfs: kill xfs_bawrite
There are no more users of this function left in the XFS code
now that we've switched everything to delayed write flushing.
Remove it.
Signed-off-by: Dave Chinner <david@fromorbit.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_buf.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_buf.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/fs/xfs/linux-2.6/xfs_buf.c b/fs/xfs/linux-2.6/xfs_buf.c index 4556a4c31e36..d50df3a8101c 100644 --- a/fs/xfs/linux-2.6/xfs_buf.c +++ b/fs/xfs/linux-2.6/xfs_buf.c @@ -1078,25 +1078,6 @@ xfs_bwrite( return error; } -int -xfs_bawrite( - void *mp, - struct xfs_buf *bp) -{ - trace_xfs_buf_bawrite(bp, _RET_IP_); - - ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL); - - xfs_buf_delwri_dequeue(bp); - - bp->b_flags &= ~(XBF_READ | XBF_DELWRI | XBF_READ_AHEAD); - bp->b_flags |= (XBF_WRITE | XBF_ASYNC | _XBF_RUN_QUEUES); - - bp->b_mount = mp; - bp->b_strat = xfs_bdstrat_cb; - return xfs_bdstrat_cb(bp); -} - void xfs_bdwrite( void *mp, |