aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_bmap.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2011-09-18 16:41:06 -0400
committerAlex Elder <aelder@sgi.com>2011-10-11 22:15:07 -0400
commitb0eab14e74d2d7b22d065e18a1cdebcf7716debf (patch)
treec5cf9e53fe4b74202689fbe792c349077841d641 /fs/xfs/xfs_bmap.c
parentc6534249851d062113ab4d8d226be8dba8ecb92e (diff)
xfs: dont ignore error code from xfs_bmbt_update
Fix a case in xfs_bmap_add_extent_unwritten_real where we aren't passing the returned error on. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_bmap.c')
-rw-r--r--fs/xfs/xfs_bmap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c
index 2b31945ce9fe..bb31d37bf49b 100644
--- a/fs/xfs/xfs_bmap.c
+++ b/fs/xfs/xfs_bmap.c
@@ -1217,10 +1217,11 @@ xfs_bmap_add_extent_unwritten_real(
1217 goto done; 1217 goto done;
1218 if ((error = xfs_btree_decrement(cur, 0, &i))) 1218 if ((error = xfs_btree_decrement(cur, 0, &i)))
1219 goto done; 1219 goto done;
1220 if (xfs_bmbt_update(cur, LEFT.br_startoff, 1220 error = xfs_bmbt_update(cur, LEFT.br_startoff,
1221 LEFT.br_startblock, 1221 LEFT.br_startblock,
1222 LEFT.br_blockcount + new->br_blockcount, 1222 LEFT.br_blockcount + new->br_blockcount,
1223 LEFT.br_state)) 1223 LEFT.br_state);
1224 if (error)
1224 goto done; 1225 goto done;
1225 } 1226 }
1226 break; 1227 break;