summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/relocation.c
diff options
context:
space:
mode:
authorNikolay Borisov2019-04-10 15:16:11 +0200
committerDavid Sterba2019-04-29 19:02:40 +0200
commitf9756261c28c0acdaac8a7a8894d3e25d334d5f3 (patch)
tree0cc3eebe240a3f01930ced914c5f194fba59fed9 /fs/btrfs/relocation.c
parentbtrfs: Do mandatory tree block check before submitting bio (diff)
downloadkernel-qcow2-linux-f9756261c28c0acdaac8a7a8894d3e25d334d5f3.tar.gz
kernel-qcow2-linux-f9756261c28c0acdaac8a7a8894d3e25d334d5f3.tar.xz
kernel-qcow2-linux-f9756261c28c0acdaac8a7a8894d3e25d334d5f3.zip
btrfs: Remove redundant inode argument from btrfs_add_ordered_sum
Ordered csums are keyed off of a btrfs_ordered_extent, which already has a reference to the inode. This implies that an explicit inode argument is redundant. So remove it. Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Signed-off-by: Nikolay Borisov <nborisov@suse.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/relocation.c')
-rw-r--r--fs/btrfs/relocation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c
index 25fc6a4f3ecf..2246aa2e30e3 100644
--- a/fs/btrfs/relocation.c
+++ b/fs/btrfs/relocation.c
@@ -4604,7 +4604,7 @@ int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len)
new_bytenr = ordered->start + (sums->bytenr - disk_bytenr);
sums->bytenr = new_bytenr;
- btrfs_add_ordered_sum(inode, ordered, sums);
+ btrfs_add_ordered_sum(ordered, sums);
}
out:
btrfs_put_ordered_extent(ordered);