search for: cb6ddd0

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

Did you mean: cb6dbc0
2013 Nov 27
0
[PATCH] Btrfs-progs: fix the mismatch of extent buffer's space
...o 1 instead of 2, this helps us get rid of the above problem. Signed-off-by: Liu Bo <bo.li.liu@oracle.com> --- btrfs-convert.c | 1 + extent_io.c | 2 +- mkfs.c | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/btrfs-convert.c b/btrfs-convert.c index ae10eed..cb6ddd0 100644 --- a/btrfs-convert.c +++ b/btrfs-convert.c @@ -1634,6 +1634,7 @@ static int init_btrfs(struct btrfs_root *root) ret = create_subvol(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-...