aboutsummaryrefslogtreecommitdiffstats
path: root/fs/aio.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/aio.c')
-rw-r--r--fs/aio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/aio.c b/fs/aio.c
index 81c01290939b..a175ad650b66 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -1604,7 +1604,7 @@ static int io_submit_one(struct kioctx *ctx, struct iocb __user *user_iocb,
1604 * event using the eventfd_signal() function. 1604 * event using the eventfd_signal() function.
1605 */ 1605 */
1606 req->ki_eventfd = eventfd_fget((int) iocb->aio_resfd); 1606 req->ki_eventfd = eventfd_fget((int) iocb->aio_resfd);
1607 if (unlikely(IS_ERR(req->ki_eventfd))) { 1607 if (IS_ERR(req->ki_eventfd)) {
1608 ret = PTR_ERR(req->ki_eventfd); 1608 ret = PTR_ERR(req->ki_eventfd);
1609 goto out_put_req; 1609 goto out_put_req;
1610 } 1610 }