From d0779291b1e9666aa4aac46ffd8062e3c3b0f2ab Mon Sep 17 00:00:00 2001 From: David Sterba Date: Thu, 8 Mar 2018 13:47:33 +0100 Subject: [PATCH] btrfs: remove unused parameters from extent_submit_bio_start_t Remove parameters not used by any of the callbacks. Signed-off-by: David Sterba --- fs/btrfs/disk-io.c | 2 -- fs/btrfs/extent_io.h | 3 +-- fs/btrfs/inode.c | 4 +--- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index ee5d29a0219f..6fe5a959d56b 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -717,7 +717,6 @@ static void run_one_async_start(struct btrfs_work *work) async = container_of(work, struct async_submit_bio, work); ret = async->submit_bio_start(async->private_data, async->bio, - async->mirror_num, async->bio_flags, async->bio_offset); if (ret) async->status = ret; @@ -800,7 +799,6 @@ static blk_status_t btree_csum_one_bio(struct bio *bio) } static blk_status_t __btree_submit_bio_start(void *private_data, struct bio *bio, - int mirror_num, unsigned long bio_flags, u64 bio_offset) { /* diff --git a/fs/btrfs/extent_io.h b/fs/btrfs/extent_io.h index bbfae2abfb39..6596b697b827 100644 --- a/fs/btrfs/extent_io.h +++ b/fs/btrfs/extent_io.h @@ -97,8 +97,7 @@ typedef blk_status_t (extent_submit_bio_hook_t)(void *private_data, struct bio * u64 bio_offset); typedef blk_status_t (extent_submit_bio_start_t)(void *private_data, - struct bio *bio, int mirror_num, unsigned long bio_flags, - u64 bio_offset); + struct bio *bio, u64 bio_offset); typedef blk_status_t (extent_submit_bio_done_t)(void *private_data, struct bio *bio, int mirror_num, unsigned long bio_flags, diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index fc5b7d82b842..08ae94415ed4 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -1942,7 +1942,6 @@ int btrfs_merge_bio_hook(struct page *page, unsigned long offset, * are inserted into the btree */ static blk_status_t __btrfs_submit_bio_start(void *private_data, struct bio *bio, - int mirror_num, unsigned long bio_flags, u64 bio_offset) { struct inode *inode = private_data; @@ -8222,8 +8221,7 @@ static void btrfs_endio_direct_write(struct bio *bio) } static blk_status_t __btrfs_submit_bio_start_direct_io(void *private_data, - struct bio *bio, int mirror_num, - unsigned long bio_flags, u64 offset) + struct bio *bio, u64 offset) { struct inode *inode = private_data; blk_status_t ret; -- 2.45.2