diff options
author | Jens Axboe <axboe@kernel.dk> | 2018-11-06 14:27:13 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-12-18 08:29:58 -0700 |
commit | bc9bff61624ac33b7c95861abea1af24ee7a94fc (patch) | |
tree | 7bfc17c1175204e2116b3f041e4c16581333bec8 /fs/aio.c | |
parent | 4b9254328254bed12a4ac449cdff2c332e630837 (diff) | |
download | linux-bc9bff61624ac33b7c95861abea1af24ee7a94fc.tar.bz2 |
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); } } |