On 03/03/2019 07:18 AM, Al Viro wrote:
quoted hunk ↗ jump to hunk
Fixes: bfe4037e722ec
Cc: stable@vger.kernel.org
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---
diff --git a/fs/aio.c b/fs/aio.c
index 3083180a54c8..7e88bfabdac2 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -1767,6 +1767,7 @@ static ssize_t aio_poll(struct aio_kiocb *aiocb, const struct iocb *iocb)
/* one for removal from waitqueue, one for this function */
refcount_set(&aiocb->ki_refcnt, 2);
+ get_file(req->file);
mask = vfs_poll(req->file, &apt.pt) & req->events;
if (unlikely(!req->head)) {@@ -1793,6 +1794,7 @@ static ssize_t aio_poll(struct aio_kiocb *aiocb, const struct iocb *iocb)
spin_unlock_irq(&ctx->ctx_lock);
out:
+ fput(req->file);
if (unlikely(apt.error)) {
fput(req->file);
return apt.error;
Very nice changelog Al, thanks for fixing this.
Reviewed-by: Eric Dumazet <edumazet@google.com>