diff options
Diffstat (limited to 'fs/aio.c')
-rw-r--r-- | fs/aio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | } |