]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
btrfs: move transaction abort to the error site in btrfs_delete_free_space_tree()
authorDavid Sterba <dsterba@suse.com>
Tue, 23 Jan 2024 23:23:49 +0000 (00:23 +0100)
committerDavid Sterba <dsterba@suse.com>
Mon, 4 Mar 2024 15:24:48 +0000 (16:24 +0100)
The recommended pattern for transaction abort after error is to place it
right after the error is handled. That way it's easier to locate where
it failed and help debugging.

Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/free-space-tree.c

index 7b598b070700e74583f4fe325b52346ed50f43c0..888185265f4b4cfa32aa3cbbdb5940a8084963f0 100644 (file)
@@ -1273,12 +1273,18 @@ int btrfs_delete_free_space_tree(struct btrfs_fs_info *fs_info)
        btrfs_clear_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID);
 
        ret = clear_free_space_tree(trans, free_space_root);
-       if (ret)
-               goto abort;
+       if (ret) {
+               btrfs_abort_transaction(trans, ret);
+               btrfs_end_transaction(trans);
+               return ret;
+       }
 
        ret = btrfs_del_root(trans, &free_space_root->root_key);
-       if (ret)
-               goto abort;
+       if (ret) {
+               btrfs_abort_transaction(trans, ret);
+               btrfs_end_transaction(trans);
+               return ret;
+       }
 
        btrfs_global_root_delete(free_space_root);
 
@@ -1295,11 +1301,6 @@ int btrfs_delete_free_space_tree(struct btrfs_fs_info *fs_info)
        btrfs_put_root(free_space_root);
 
        return btrfs_commit_transaction(trans);
-
-abort:
-       btrfs_abort_transaction(trans, ret);
-       btrfs_end_transaction(trans);
-       return ret;
 }
 
 int btrfs_rebuild_free_space_tree(struct btrfs_fs_info *fs_info)