summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_trans_buf.c
diff options
context:
space:
mode:
authorDave Chinner2012-04-23 07:59:07 +0200
committerBen Myers2012-05-14 23:21:03 +0200
commit611c99468c7aa1a5c2bb6d46e7b5d8e53eecfefd (patch)
tree809588ac3b7ec796041a435dc512a3f22594be4d /fs/xfs/xfs_trans_buf.c
parentxfs: flush outstanding buffers on log mount failure (diff)
downloadkernel-qcow2-linux-611c99468c7aa1a5c2bb6d46e7b5d8e53eecfefd.tar.gz
kernel-qcow2-linux-611c99468c7aa1a5c2bb6d46e7b5d8e53eecfefd.tar.xz
kernel-qcow2-linux-611c99468c7aa1a5c2bb6d46e7b5d8e53eecfefd.zip
xfs: make XBF_MAPPED the default behaviour
Rather than specifying XBF_MAPPED for almost all buffers, introduce XBF_UNMAPPED for the couple of users that use unmapped buffers. Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Mark Tinguely <tinguely@sgi.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_trans_buf.c')
-rw-r--r--fs/xfs/xfs_trans_buf.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/xfs/xfs_trans_buf.c b/fs/xfs/xfs_trans_buf.c
index d250afaeb70c..21c5a5e3700d 100644
--- a/fs/xfs/xfs_trans_buf.c
+++ b/fs/xfs/xfs_trans_buf.c
@@ -138,9 +138,6 @@ xfs_trans_get_buf(xfs_trans_t *tp,
xfs_buf_t *bp;
xfs_buf_log_item_t *bip;
- if (flags == 0)
- flags = XBF_MAPPED;
-
/*
* Default to a normal get_buf() call if the tp is NULL.
*/
@@ -264,9 +261,6 @@ xfs_trans_read_buf(
*bpp = NULL;
- if (flags == 0)
- flags = XBF_MAPPED;
-
/*
* Default to a normal get_buf() call if the tp is NULL.
*/