diff options
author | Jens Axboe <axboe@kernel.dk> | 2018-11-06 22:27:13 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-12-18 16:29:58 +0100 |
commit | bc9bff61624ac33b7c95861abea1af24ee7a94fc (patch) | |
tree | 7bfc17c1175204e2116b3f041e4c16581333bec8 /fs/aio.c | |
parent | Merge branch 'for-4.21/block' into for-4.21/aio (diff) | |
download | linux-bc9bff61624ac33b7c95861abea1af24ee7a94fc.tar.xz linux-bc9bff61624ac33b7c95861abea1af24ee7a94fc.zip |
aio: use assigned completion handler
We know this is a read/write request, but in preparation for
having different kinds of those, ensure that we call the assigned
handler instead of assuming it's aio_complete_rq().
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/aio.c')
-rw-r--r-- | fs/aio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1492,7 +1492,7 @@ static inline void aio_rw_done(struct kiocb *req, ssize_t ret) ret = -EINTR; /*FALLTHRU*/ default: - aio_complete_rw(req, ret, 0); + req->ki_complete(req, ret, 0); } } |