]> git.hungrycats.org Git - linux/commitdiff
btrfs: delete chunk allocation attemp when setting block group ro
authorShaohua Li <shli@fb.com>
Fri, 9 Jan 2015 18:40:15 +0000 (10:40 -0800)
committerZygo Blaxell <zblaxell@serenity.furryterror.org>
Fri, 27 Feb 2015 05:33:06 +0000 (00:33 -0500)
Below test will fail currently:
      mkfs.ext4 -F /dev/sda
      btrfs-convert /dev/sda
      mount /dev/sda /mnt
      btrfs device add -f /dev/sdb /mnt
      btrfs balance start -v -dconvert=raid1 -mconvert=raid1 /mnt

The reason is there are some block groups with usage 0, but the whole
disk hasn't free space to allocate new chunk, so we even can't set such
block group readonly. This patch deletes the chunk allocation when
setting block group ro. For META, we already have reserve. But for
SYSTEM, we don't have, so the check_system_chunk is still required.

Signed-off-by: Shaohua Li <shli@fb.com>
Signed-off-by: Chris Mason <clm@fb.com>
(cherry picked from commit 2f0810880f082fa8ba66ab2c33b02e4ff9770a5e)

fs/btrfs/extent-tree.c

index 4bd5e06fa5ab402f99c5f444059575ac4a3e397f..fe36649cf08a3cf8329a7090e34beeb730d9788d 100644 (file)
@@ -8535,14 +8535,6 @@ int btrfs_set_block_group_ro(struct btrfs_root *root,
        if (IS_ERR(trans))
                return PTR_ERR(trans);
 
-       alloc_flags = update_block_group_flags(root, cache->flags);
-       if (alloc_flags != cache->flags) {
-               ret = do_chunk_alloc(trans, root, alloc_flags,
-                                    CHUNK_ALLOC_FORCE);
-               if (ret < 0)
-                       goto out;
-       }
-
        ret = set_block_group_ro(cache, 0);
        if (!ret)
                goto out;
@@ -8553,6 +8545,11 @@ int btrfs_set_block_group_ro(struct btrfs_root *root,
                goto out;
        ret = set_block_group_ro(cache, 0);
 out:
+       if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
+               alloc_flags = update_block_group_flags(root, cache->flags);
+               check_system_chunk(trans, root, alloc_flags);
+       }
+
        btrfs_end_transaction(trans, root);
        return ret;
 }