btrfs: clear defrag status of a root if starting transaction fails
authorDavid Sterba <dsterba@suse.com>
Tue, 7 Jul 2020 16:30:06 +0000 (18:30 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 20 Jul 2021 14:17:28 +0000 (16:17 +0200)
commit 6819703f5a365c95488b07066a8744841bf14231 upstream.

The defrag loop processes leaves in batches and starting transaction for
each. The whole defragmentation on a given root is protected by a bit
but in case the transaction fails, the bit is not cleared

In case the transaction fails the bit would prevent starting
defragmentation again, so make sure it's cleared.

CC: stable@vger.kernel.org # 4.4+
Reviewed-by: Qu Wenruo <wqu@suse.com>
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/btrfs/transaction.c

index a066ad58197690178d722639053004ee71656659..da40912fe0867ddfb26a2aa6ad59faf317354d82 100644 (file)
@@ -1319,8 +1319,10 @@ int btrfs_defrag_root(struct btrfs_root *root)
 
        while (1) {
                trans = btrfs_start_transaction(root, 0);
-               if (IS_ERR(trans))
-                       return PTR_ERR(trans);
+               if (IS_ERR(trans)) {
+                       ret = PTR_ERR(trans);
+                       break;
+               }
 
                ret = btrfs_defrag_leaves(trans, root);