Btrfs: pass root instead of parent_root to iterate_inode_ref

We need to pass the root that we determined earlier to iterate_inode_ref.

Reported-by: Alex Lyakas <alex.bolshoy.btrfs@gmail.com>
Signed-off-by: Alexander Block <ablock84@googlemail.com>
This commit is contained in:
Alexander Block 2012-08-01 14:42:14 +02:00 committed by Chris Mason
parent d8347fa444
commit 2f28f4787c

View file

@ -3206,8 +3206,8 @@ static int process_all_refs(struct send_ctx *sctx,
found_key.type != key.type)
break;
ret = iterate_inode_ref(sctx, sctx->parent_root, path,
&found_key, 0, cb, sctx);
ret = iterate_inode_ref(sctx, root, path, &found_key, 0, cb,
sctx);
btrfs_release_path(path);
if (ret < 0)
goto out;