diff options
| author | Dave Chinner <dchinner@redhat.com> | 2012-04-23 15:59:07 +1000 | 
|---|---|---|
| committer | Ben Myers <bpm@sgi.com> | 2012-05-14 16:21:03 -0500 | 
| commit | 611c99468c7aa1a5c2bb6d46e7b5d8e53eecfefd (patch) | |
| tree | 809588ac3b7ec796041a435dc512a3f22594be4d /fs/xfs/xfs_trans_buf.c | |
| parent | d4f3512b0891658b6b4d5fc99567242b3fc2d6b7 (diff) | |
| download | olio-linux-3.10-611c99468c7aa1a5c2bb6d46e7b5d8e53eecfefd.tar.xz olio-linux-3.10-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.c | 6 | 
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/xfs/xfs_trans_buf.c b/fs/xfs/xfs_trans_buf.c index d250afaeb70..21c5a5e3700 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.  	 */  |