io_uring: allow allocated fixed files for accept
authorJens Axboe <axboe@kernel.dk>
Sat, 7 May 2022 16:08:31 +0000 (10:08 -0600)
committerJens Axboe <axboe@kernel.dk>
Mon, 9 May 2022 15:15:39 +0000 (09:15 -0600)
commitbd3bc9e99a916c26a5eb872fa1b938f19120a60f
tree6d860d70cff4cc6b4e3b2a0b9587900bdb574b4c
parent08cf52bc6eb44e72c3bc507d0d8bcf1b50270aa0
io_uring: allow allocated fixed files for accept

If the application passes in IORING_FILE_INDEX_ALLOC as the file_slot,
then that's a hint to allocate a fixed file descriptor rather than have
one be passed in directly.

This can be useful for having io_uring manage the direct descriptor space,
and also allows multi-shot support to work with fixed files.

Normal accept direct requests will complete with 0 for success, and < 0
in case of error. If io_uring is asked to allocated the direct descriptor,
then the direct descriptor is returned in case of success.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c