summaryrefslogtreecommitdiffstats
path: root/fs/direct-io.c
diff options
context:
space:
mode:
authorChristoph Hellwig2017-06-03 09:37:58 +0200
committerJens Axboe2017-06-09 17:27:32 +0200
commit4055351cdbb44e8646ff67b346c80097e1d2c04c (patch)
treeef06ad17a01102c1bcdd843b81a970c74eaae619 /fs/direct-io.c
parentdm: fix REQ_RAHEAD handling (diff)
downloadkernel-qcow2-linux-4055351cdbb44e8646ff67b346c80097e1d2c04c.tar.gz
kernel-qcow2-linux-4055351cdbb44e8646ff67b346c80097e1d2c04c.tar.xz
kernel-qcow2-linux-4055351cdbb44e8646ff67b346c80097e1d2c04c.zip
fs: remove the unused error argument to dio_end_io()
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Bart Van Assche <Bart.VanAssche@sandisk.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'fs/direct-io.c')
-rw-r--r--fs/direct-io.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/direct-io.c b/fs/direct-io.c
index a04ebea77de8..04247a6c3f73 100644
--- a/fs/direct-io.c
+++ b/fs/direct-io.c
@@ -348,13 +348,12 @@ static void dio_bio_end_io(struct bio *bio)
/**
* dio_end_io - handle the end io action for the given bio
* @bio: The direct io bio thats being completed
- * @error: Error if there was one
*
* This is meant to be called by any filesystem that uses their own dio_submit_t
* so that the DIO specific endio actions are dealt with after the filesystem
* has done it's completion work.
*/
-void dio_end_io(struct bio *bio, int error)
+void dio_end_io(struct bio *bio)
{
struct dio *dio = bio->bi_private;