]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - fs/xfs/xfs_refcount_item.c
Merge tag 'xfs-5.4-merge-8' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
[linux.git] / fs / xfs / xfs_refcount_item.c
index db0e0d7cffb7874bfffc613c5ee7c61475faeb18..2328268e6245925cf41d3d708f4dbaf35e381718 100644 (file)
@@ -555,26 +555,24 @@ xfs_cui_recover(
                        irec.br_blockcount = new_len;
                        switch (type) {
                        case XFS_REFCOUNT_INCREASE:
-                               error = xfs_refcount_increase_extent(tp, &irec);
+                               xfs_refcount_increase_extent(tp, &irec);
                                break;
                        case XFS_REFCOUNT_DECREASE:
-                               error = xfs_refcount_decrease_extent(tp, &irec);
+                               xfs_refcount_decrease_extent(tp, &irec);
                                break;
                        case XFS_REFCOUNT_ALLOC_COW:
-                               error = xfs_refcount_alloc_cow_extent(tp,
+                               xfs_refcount_alloc_cow_extent(tp,
                                                irec.br_startblock,
                                                irec.br_blockcount);
                                break;
                        case XFS_REFCOUNT_FREE_COW:
-                               error = xfs_refcount_free_cow_extent(tp,
+                               xfs_refcount_free_cow_extent(tp,
                                                irec.br_startblock,
                                                irec.br_blockcount);
                                break;
                        default:
                                ASSERT(0);
                        }
-                       if (error)
-                               goto abort_error;
                        requeue_only = true;
                }
        }