aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/disk-io.c
diff options
context:
space:
mode:
authorYan Zheng <zheng.yan@oracle.com>2008-10-29 14:49:05 -0400
committerChris Mason <chris.mason@oracle.com>2008-10-29 14:49:05 -0400
commitf82d02d9d8222183b7945e893111a6d1bf67ae4a (patch)
tree70be1bb231f4cc2e673920774e759359f3dcf1a5 /fs/btrfs/disk-io.c
parentc8b978188c9a0fd3d535c13debd19d522b726f1f (diff)
Btrfs: Improve space balancing code
This patch improves the space balancing code to keep more sharing of tree blocks. The only case that breaks sharing of tree blocks is data extents get fragmented during balancing. The main changes in this patch are: Add a 'drop sub-tree' function. This solves the problem in old code that BTRFS_HEADER_FLAG_WRITTEN check breaks sharing of tree block. Remove relocation mapping tree. Relocation mappings are stored in struct btrfs_ref_path and updated dynamically during walking up/down the reference path. This reduces CPU usage and simplifies code. This patch also fixes a bug. Root items for reloc trees should be updated in btrfs_free_reloc_root. Signed-off-by: Yan Zheng <zheng.yan@oracle.com>
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r--fs/btrfs/disk-io.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index dc95f636a11b..796256440dfa 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -1448,8 +1448,6 @@ struct btrfs_root *open_ctree(struct super_block *sb,
1448 fs_info->btree_inode->i_mapping, GFP_NOFS); 1448 fs_info->btree_inode->i_mapping, GFP_NOFS);
1449 fs_info->do_barriers = 1; 1449 fs_info->do_barriers = 1;
1450 1450
1451 extent_io_tree_init(&fs_info->reloc_mapping_tree,
1452 fs_info->btree_inode->i_mapping, GFP_NOFS);
1453 INIT_LIST_HEAD(&fs_info->dead_reloc_roots); 1451 INIT_LIST_HEAD(&fs_info->dead_reloc_roots);
1454 btrfs_leaf_ref_tree_init(&fs_info->reloc_ref_tree); 1452 btrfs_leaf_ref_tree_init(&fs_info->reloc_ref_tree);
1455 btrfs_leaf_ref_tree_init(&fs_info->shared_ref_tree); 1453 btrfs_leaf_ref_tree_init(&fs_info->shared_ref_tree);