aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/libxfs/xfs_ialloc.c
diff options
context:
space:
mode:
authorDave Chinner <david@fromorbit.com>2014-12-03 17:18:21 -0500
committerDave Chinner <david@fromorbit.com>2014-12-03 17:18:21 -0500
commite77b8547ca9c4b87932e9da3db906bc016885d8d (patch)
treed16d7f5d9c4337bf8cbf13266cf4f3d3e989815b /fs/xfs/libxfs/xfs_ialloc.c
parentdb52d09ecbf85c54e263a9d1ebfb615a9b2b3ba6 (diff)
parentd254aaec5d1aa2997dad035db340c298eaa8d089 (diff)
Merge branch 'xfs-coccinelle-cleanups' into xfs-misc-fixes-for-3.19-2
Diffstat (limited to 'fs/xfs/libxfs/xfs_ialloc.c')
-rw-r--r--fs/xfs/libxfs/xfs_ialloc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/fs/xfs/libxfs/xfs_ialloc.c b/fs/xfs/libxfs/xfs_ialloc.c
index 23dcb72fc5e6..705a7530176e 100644
--- a/fs/xfs/libxfs/xfs_ialloc.c
+++ b/fs/xfs/libxfs/xfs_ialloc.c
@@ -1137,11 +1137,7 @@ xfs_dialloc_ag_update_inobt(
1137 XFS_WANT_CORRUPTED_RETURN((rec.ir_free == frec->ir_free) && 1137 XFS_WANT_CORRUPTED_RETURN((rec.ir_free == frec->ir_free) &&
1138 (rec.ir_freecount == frec->ir_freecount)); 1138 (rec.ir_freecount == frec->ir_freecount));
1139 1139
1140 error = xfs_inobt_update(cur, &rec); 1140 return xfs_inobt_update(cur, &rec);
1141 if (error)
1142 return error;
1143
1144 return 0;
1145} 1141}
1146 1142
1147/* 1143/*