aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/send.c
diff options
context:
space:
mode:
authorAlexander Block <ablock84@googlemail.com>2012-08-01 14:42:14 +0200
committerChris Mason <chris.mason@fusionio.com>2012-10-01 15:18:58 -0400
commit2f28f4787c0fc37c508cfb6b7b11c00ce5072940 (patch)
tree10d03e8665e6cf34ed8ba41ebe19780e6c452d9e /fs/btrfs/send.c
parentBtrfs: use <= instead of < in is_extent_unchanged (diff)
downloadlinux-dev-2f28f4787c0fc37c508cfb6b7b11c00ce5072940.tar.xz
linux-dev-2f28f4787c0fc37c508cfb6b7b11c00ce5072940.zip
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>
Diffstat (limited to 'fs/btrfs/send.c')
-rw-r--r--fs/btrfs/send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c
index c6c10a43153c..db051d17b0be 100644
--- a/fs/btrfs/send.c
+++ b/fs/btrfs/send.c
@@ -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;