Re: [PATCH 10/29] btrfs: remove unused parameter from btrfs_prepare_extent_commit
From: Liu Bo <hidden>
Date: 2017-02-15 21:20:59
On Mon, Feb 13, 2017 at 10:33:52AM +0100, David Sterba wrote:
Added but never used.
Reviewed-by: Liu Bo <redacted> Thanks, -liubo
quoted hunk ↗ jump to hunk
Signed-off-by: David Sterba <dsterba@suse.com> --- fs/btrfs/ctree.h | 3 +-- fs/btrfs/extent-tree.c | 3 +-- fs/btrfs/transaction.c | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-)diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 0f5b85772023..e7dbda3dd3b8 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h@@ -2630,8 +2630,7 @@ int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len, int delalloc); int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len); -void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans, - struct btrfs_fs_info *fs_info); +void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info); int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct btrfs_fs_info *fs_info); int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index b33e2c8325c8..2500e3df3250 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c@@ -6558,8 +6558,7 @@ static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache, spin_unlock(&space_info->lock); return ret; } -void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans, - struct btrfs_fs_info *fs_info) +void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info) { struct btrfs_caching_control *next; struct btrfs_caching_control *caching_ctl;diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c index 7d1d71259cd0..8bfb5e2c31f9 100644 --- a/fs/btrfs/transaction.c +++ b/fs/btrfs/transaction.c@@ -2211,7 +2211,7 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans) goto scrub_continue; } - btrfs_prepare_extent_commit(trans, fs_info); + btrfs_prepare_extent_commit(fs_info); cur_trans = fs_info->running_transaction;-- 2.10.1 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html