]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
Btrfs: don't get the block_rsv in btrfs_free_tree_block
authorJosef Bacik <josef@redhat.com>
Tue, 30 Aug 2011 15:40:48 +0000 (11:40 -0400)
committerJosef Bacik <josef@redhat.com>
Wed, 19 Oct 2011 19:12:43 +0000 (15:12 -0400)
Since the durable block rsv stuff has been killed there is no need to get the
block_rsv in btrfs_free_tree_block anymore.

Signed-off-by: Josef Bacik <josef@redhat.com>
fs/btrfs/extent-tree.c

index 53f6dbdab51029077a3a6e6d04c62cb26adf70fd..d236df790156d6a1375b4d5a76d6e11ee1aec18c 100644 (file)
@@ -4707,7 +4707,6 @@ void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
                           struct extent_buffer *buf,
                           u64 parent, int last_ref)
 {
-       struct btrfs_block_rsv *block_rsv;
        struct btrfs_block_group_cache *cache = NULL;
        int ret;
 
@@ -4722,10 +4721,7 @@ void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
        if (!last_ref)
                return;
 
-       block_rsv = get_block_rsv(trans, root);
        cache = btrfs_lookup_block_group(root->fs_info, buf->start);
-       if (block_rsv->space_info != cache->space_info)
-               goto out;
 
        if (btrfs_header_generation(buf) == trans->transid) {
                if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {