btrfsck: make sure to dirty all block groups as we fix accounting
authorChris Mason <chris.mason@oracle.com>
Thu, 9 Feb 2012 14:29:19 +0000 (09:29 -0500)
committerChris Mason <chris.mason@oracle.com>
Thu, 9 Feb 2012 14:29:19 +0000 (09:29 -0500)
The code that corrects the count of bytes used in each block group
was only marking block groups dirty when they contained extents.  This
fixes things to dirty all the block groups, so any empty block groups
are written with their correct (zero) count.

Signed-off-by: Chris Mason <chris.mason@oracle.com>
extent-tree.c

index 544ab2f..5c4057e 100644 (file)
@@ -3378,6 +3378,8 @@ int btrfs_fix_block_accounting(struct btrfs_trans_handle *trans,
        struct btrfs_block_group_cache *cache;
        struct btrfs_fs_info *fs_info = root->fs_info;
 
+       root = root->fs_info->extent_root;
+
        while(1) {
                cache = btrfs_lookup_block_group(fs_info, start);
                if (!cache)
@@ -3385,6 +3387,10 @@ int btrfs_fix_block_accounting(struct btrfs_trans_handle *trans,
                start = cache->key.objectid + cache->key.offset;
                btrfs_set_block_group_used(&cache->item, 0);
                cache->space_info->bytes_used = 0;
+               set_extent_bits(&root->fs_info->block_group_cache,
+                               cache->key.objectid,
+                               cache->key.objectid + cache->key.offset -1,
+                               BLOCK_GROUP_DIRTY, GFP_NOFS);
        }
 
        btrfs_init_path(&path);