diff options
author | Jens Axboe <axboe@kernel.dk> | 2018-11-17 07:43:42 -0700 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-11-17 10:05:07 -0500 |
commit | 53fffe29a9e664a999dd3787e4428da8c30533e0 (patch) | |
tree | e5ffef375a649e60652f82da033e808663c66bf1 /fs | |
parent | c4b7d1ba7d263b74bb72e9325262a67139605cde (diff) | |
download | linux-53fffe29a9e664a999dd3787e4428da8c30533e0.tar.bz2 |
aio: fix failure to put the file pointer
If the ioprio capability check fails, we return without putting
the file pointer.
Fixes: d9a08a9e616b ("fs: Add aio iopriority support")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/aio.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1436,6 +1436,7 @@ static int aio_prep_rw(struct kiocb *req, struct iocb *iocb) ret = ioprio_check_cap(iocb->aio_reqprio); if (ret) { pr_debug("aio ioprio check cap error: %d\n", ret); + fput(req->ki_filp); return ret; } |