diff options
author | Chandra Seetharaman <sekharan@us.ibm.com> | 2011-08-03 02:18:34 +0000 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2011-08-12 13:39:40 -0500 |
commit | e570280521290c27621d60cffea2400bdf1f2c88 (patch) | |
tree | 4cf24cfa20ecef67b2aafa2309d04a137ecfbe4a /fs/xfs/xfs_vnodeops.c | |
parent | ac4d6888b21a8be373f3e06f1d4011fbe2bbbeac (diff) | |
download | linux-stable-e570280521290c27621d60cffea2400bdf1f2c88.tar.gz linux-stable-e570280521290c27621d60cffea2400bdf1f2c88.tar.bz2 linux-stable-e570280521290c27621d60cffea2400bdf1f2c88.zip |
xfs: replace xfs_buf_geterror() with bp->b_error
Since we just checked bp for NULL, it is ok to replace
xfs_buf_geterror() with bp->b_error in these places.
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_vnodeops.c')
-rw-r--r-- | fs/xfs/xfs_vnodeops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c index 2a432d00d4c1..51fc429527bc 100644 --- a/fs/xfs/xfs_vnodeops.c +++ b/fs/xfs/xfs_vnodeops.c @@ -85,7 +85,7 @@ xfs_readlink_bmap( XBF_LOCK | XBF_MAPPED | XBF_DONT_BLOCK); if (!bp) return XFS_ERROR(ENOMEM); - error = xfs_buf_geterror(bp); + error = bp->b_error; if (error) { xfs_ioerror_alert("xfs_readlink", ip->i_mount, bp, XFS_BUF_ADDR(bp)); |