diff options
| author | Dave Chinner <dchinner@redhat.com> | 2011-09-18 20:40:52 +0000 | 
|---|---|---|
| committer | Alex Elder <aelder@sgi.com> | 2011-10-11 21:15:04 -0500 | 
| commit | c0dc7828af6952643219292be29e482ef74cb261 (patch) | |
| tree | 02f12935ec56f61a9ed396d1b902b21aaf4ffb3e /fs/xfs/xfs_vnodeops.c | |
| parent | b447fe5a05cbd01c4bf7fe2fa41cb9e99ce7e58e (diff) | |
| download | olio-linux-3.10-c0dc7828af6952643219292be29e482ef74cb261.tar.xz olio-linux-3.10-c0dc7828af6952643219292be29e482ef74cb261.zip  | |
xfs: rename xfs_bmapi to xfs_bmapi_write
Now that all the read-only users of xfs_bmapi have been converted to
use xfs_bmapi_read(), we can remove all the read-only handling cases
from xfs_bmapi().
Once this is done, rename xfs_bmapi to xfs_bmapi_write to reflect
the fact it is for allocation only. This enables us to kill the
XFS_BMAPI_WRITE flag as well.
Also clean up xfs_bmapi_write to the style used in the newly added
xfs_bmapi_read/delay functions.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_vnodeops.c')
| -rw-r--r-- | fs/xfs/xfs_vnodeops.c | 19 | 
1 files changed, 6 insertions, 13 deletions
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c index 63874a87b37..f47ecee8d43 100644 --- a/fs/xfs/xfs_vnodeops.c +++ b/fs/xfs/xfs_vnodeops.c @@ -1633,10 +1633,9 @@ xfs_symlink(  		first_fsb = 0;  		nmaps = SYMLINK_MAPS; -		error = xfs_bmapi(tp, ip, first_fsb, fs_blocks, -				  XFS_BMAPI_WRITE | XFS_BMAPI_METADATA, -				  &first_block, resblks, mval, &nmaps, -				  &free_list); +		error = xfs_bmapi_write(tp, ip, first_fsb, fs_blocks, +				  XFS_BMAPI_METADATA, &first_block, resblks, +				  mval, &nmaps, &free_list);  		if (error)  			goto error2; @@ -1782,7 +1781,6 @@ xfs_alloc_file_space(  	xfs_fileoff_t		startoffset_fsb;  	xfs_fsblock_t		firstfsb;  	int			nimaps; -	int			bmapi_flag;  	int			quota_flag;  	int			rt;  	xfs_trans_t		*tp; @@ -1810,7 +1808,6 @@ xfs_alloc_file_space(  	count = len;  	imapp = &imaps[0];  	nimaps = 1; -	bmapi_flag = XFS_BMAPI_WRITE | alloc_type;  	startoffset_fsb	= XFS_B_TO_FSBT(mp, offset);  	allocatesize_fsb = XFS_B_TO_FSB(mp, count); @@ -1883,14 +1880,10 @@ xfs_alloc_file_space(  		xfs_trans_ijoin(tp, ip); -		/* -		 * Issue the xfs_bmapi() call to allocate the blocks -		 */  		xfs_bmap_init(&free_list, &firstfsb); -		error = xfs_bmapi(tp, ip, startoffset_fsb, -				  allocatesize_fsb, bmapi_flag, -				  &firstfsb, 0, imapp, &nimaps, -				  &free_list); +		error = xfs_bmapi_write(tp, ip, startoffset_fsb, +					allocatesize_fsb, alloc_type, &firstfsb, +					0, imapp, &nimaps, &free_list);  		if (error) {  			goto error0;  		}  |