summaryrefslogtreecommitdiff
path: root/fs/btrfs
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2018-03-08 15:47:33 +0300
committerDavid Sterba <dsterba@suse.com>2018-03-31 02:26:55 +0300
commitd0779291b1e9666aa4aac46ffd8062e3c3b0f2ab (patch)
tree86ad85c1837e9a511322ceb4e9a6a8c6de4b10a6 /fs/btrfs
parenta758781d4b76c38374f155e2f2cf902e13b9e50e (diff)
downloadlinux-d0779291b1e9666aa4aac46ffd8062e3c3b0f2ab.tar.xz
btrfs: remove unused parameters from extent_submit_bio_start_t
Remove parameters not used by any of the callbacks. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r--fs/btrfs/disk-io.c2
-rw-r--r--fs/btrfs/extent_io.h3
-rw-r--r--fs/btrfs/inode.c4
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;