From: David Sterba Date: Fri, 10 Feb 2017 18:35:37 +0000 (+0100) Subject: btrfs: remove unused parameter from add_pending_csums X-Git-Tag: v4.14-rc1~1080^2~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=df9f628e3d316e7a254aa8ac002199a33a02b167;p=platform%2Fkernel%2Flinux-rpi3.git btrfs: remove unused parameter from add_pending_csums Never used. Reviewed-by: Liu Bo Signed-off-by: David Sterba --- diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 151d192..dae2734 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -1905,8 +1905,7 @@ out: * at IO completion time based on sums calculated at bio submission time. */ static noinline int add_pending_csums(struct btrfs_trans_handle *trans, - struct inode *inode, u64 file_offset, - struct list_head *list) + struct inode *inode, struct list_head *list) { struct btrfs_ordered_sum *sum; @@ -2900,8 +2899,7 @@ static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent) goto out_unlock; } - add_pending_csums(trans, inode, ordered_extent->file_offset, - &ordered_extent->list); + add_pending_csums(trans, inode, &ordered_extent->list); btrfs_ordered_update_i_size(inode, 0, ordered_extent); ret = btrfs_update_inode_fallback(trans, root, inode);