search for: ad07b9c

Displaying 1 result from an estimated 1 matches for "ad07b9c".

Did you mean: ad07b95a
2013 Nov 27
0
[PATCH] Btrfs-progs: fix the mismatch of extent buffer's space
...bvol(trans, root, BTRFS_DATA_RELOC_TREE_OBJECTID); BUG_ON(ret); + extent_buffer_get(fs_info->csum_root->node); ret = __btrfs_cow_block(trans, fs_info->csum_root, fs_info->csum_root->node, NULL, 0, &tmp, 0, 0); BUG_ON(ret); diff --git a/extent_io.c b/extent_io.c index ad07b9c..a127e54 100644 --- a/extent_io.c +++ b/extent_io.c @@ -580,7 +580,7 @@ static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree, eb->start = bytenr; eb->len = blocksize; - eb->refs = 2; + eb->refs = 1; eb->flags = 0; eb->tree = tree; eb->fd =...