diff options
author | David Sterba <dsterba@suse.com> | 2017-02-10 18:46:09 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2017-02-17 12:03:51 +0100 |
commit | e27f62652b89d0701d87112339f286ebf24ffc8c (patch) | |
tree | cf83a18675dd652396f06a070d5b8dada6b51c31 /fs/btrfs | |
parent | cda79c545ead7e00b1adaf82a13fcea892bf1f43 (diff) | |
download | op-kernel-dev-e27f62652b89d0701d87112339f286ebf24ffc8c.zip op-kernel-dev-e27f62652b89d0701d87112339f286ebf24ffc8c.tar.gz |
btrfs: remove unused parameter from check_async_write
Added but never used.
Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/disk-io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 1800416..89cd597 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -1005,7 +1005,7 @@ static int __btree_submit_bio_done(struct inode *inode, struct bio *bio, return ret; } -static int check_async_write(struct inode *inode, unsigned long bio_flags) +static int check_async_write(unsigned long bio_flags) { if (bio_flags & EXTENT_BIO_TREE_LOG) return 0; @@ -1021,7 +1021,7 @@ static int btree_submit_bio_hook(struct inode *inode, struct bio *bio, u64 bio_offset) { struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); - int async = check_async_write(inode, bio_flags); + int async = check_async_write(bio_flags); int ret; if (bio_op(bio) != REQ_OP_WRITE) { |