btrfs: remove lock protection for BLOCK_GROUP_FLAG_RELOCATING_REPAIR
authorJosef Bacik <josef@toxicpanda.com>
Fri, 15 Jul 2022 19:45:28 +0000 (15:45 -0400)
committerDavid Sterba <dsterba@suse.com>
Mon, 26 Sep 2022 10:27:54 +0000 (12:27 +0200)
Before when this was modifying the bit field we had to protect it with
the bg->lock, however now we're using bit helpers so we can stop
using the bg->lock.

Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/volumes.c

index 4d03d2f..fb195a0 100644 (file)
@@ -8279,13 +8279,10 @@ bool btrfs_repair_one_zone(struct btrfs_fs_info *fs_info, u64 logical)
        if (!cache)
                return true;
 
-       spin_lock(&cache->lock);
        if (test_and_set_bit(BLOCK_GROUP_FLAG_RELOCATING_REPAIR, &cache->runtime_flags)) {
-               spin_unlock(&cache->lock);
                btrfs_put_block_group(cache);
                return true;
        }
-       spin_unlock(&cache->lock);
 
        kthread_run(relocating_repair_kthread, cache,
                    "btrfs-relocating-repair");