diff options
author | David Sterba <dsterba@suse.com> | 2017-02-10 19:35:37 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2017-02-17 12:03:53 +0100 |
commit | df9f628e3d316e7a254aa8ac002199a33a02b167 (patch) | |
tree | cebf40f80c903d00509e78c7a9bf22b98e6cfe24 | |
parent | 3d4b9496e87fb96d25f9c995a7b965c1535de6b9 (diff) | |
download | blackbird-op-linux-df9f628e3d316e7a254aa8ac002199a33a02b167.tar.gz blackbird-op-linux-df9f628e3d316e7a254aa8ac002199a33a02b167.zip |
btrfs: remove unused parameter from add_pending_csums
Never used.
Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r-- | fs/btrfs/inode.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 151d192b88be..dae2734a725b 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); |