-
- Downloads
io_uring: for requests that require async, force it
Some requests require being run async as they do not support non-blocking. Instead of trying to issue these requests, getting -EAGAIN and then queueing them for async issue, rather just force async upfront. Add WARN_ON_ONCE to make sure surprising code paths do not come up, however in those cases the bug would end up being a blocking io_uring_enter(2) which should not be critical. Signed-off-by:Dylan Yudaken <dylany@meta.com> Link: https://lore.kernel.org/r/20230127135227.3646353-3-dylany@meta.com Signed-off-by:
Jens Axboe <axboe@kernel.dk>
Showing
- io_uring/advise.c 2 additions, 2 deletionsio_uring/advise.c
- io_uring/fs.c 10 additions, 10 deletionsio_uring/fs.c
- io_uring/net.c 2 additions, 2 deletionsio_uring/net.c
- io_uring/splice.c 3 additions, 4 deletionsio_uring/splice.c
- io_uring/statx.c 2 additions, 2 deletionsio_uring/statx.c
- io_uring/sync.c 8 additions, 6 deletionsio_uring/sync.c
- io_uring/xattr.c 6 additions, 8 deletionsio_uring/xattr.c
Please register or sign in to comment