diff options
| author | Chandra Seetharaman <sekharan@us.ibm.com> | 2011-07-22 23:39:51 +0000 | 
|---|---|---|
| committer | Alex Elder <aelder@sgi.com> | 2011-07-25 14:57:46 -0500 | 
| commit | 5a52c2a581cddcb676a54a95d99cd39f5577c33b (patch) | |
| tree | 085825ca21b17d566e588428fa0aa2063ba4f1a4 /fs/xfs/xfs_vnodeops.c | |
| parent | ed43233be910bbc8b9da3d61aa1b931843d1b44e (diff) | |
| download | olio-linux-3.10-5a52c2a581cddcb676a54a95d99cd39f5577c33b.tar.xz olio-linux-3.10-5a52c2a581cddcb676a54a95d99cd39f5577c33b.zip  | |
xfs: Remove the macro XFS_BUF_ERROR and family
Remove the definitions and usage of the macros XFS_BUF_ERROR,
XFS_BUF_GETERROR and XFS_BUF_ISERROR.
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Reviewed-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 | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c index 88d121486c5..3baebe280f1 100644 --- a/fs/xfs/xfs_vnodeops.c +++ b/fs/xfs/xfs_vnodeops.c @@ -83,7 +83,7 @@ xfs_readlink_bmap(  		bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt),  				  XBF_LOCK | XBF_MAPPED | XBF_DONT_BLOCK); -		error = XFS_BUF_GETERROR(bp); +		error = xfs_buf_geterror(bp);  		if (error) {  			xfs_ioerror_alert("xfs_readlink",  				  ip->i_mount, bp, XFS_BUF_ADDR(bp)); @@ -1648,7 +1648,7 @@ xfs_symlink(  			byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);  			bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,  					       BTOBB(byte_cnt), 0); -			ASSERT(bp && !XFS_BUF_GETERROR(bp)); +			ASSERT(!xfs_buf_geterror(bp));  			if (pathlen < byte_cnt) {  				byte_cnt = pathlen;  			}  |