io_uring: let to set a range for file slot allocation
authorPavel Begunkov <asml.silence@gmail.com>
Sat, 25 Jun 2022 10:55:38 +0000 (11:55 +0100)
committerJens Axboe <axboe@kernel.dk>
Mon, 25 Jul 2022 00:39:16 +0000 (18:39 -0600)
commit6e73dffbb93cb8797cd4e42e98d837edf0f1a967
treea1ea7810d2221f23c3bc0f673e6cc6a23262b5c7
parente6130eba8a848a7a6ba6c534bd8f6d60749ae1a9
io_uring: let to set a range for file slot allocation

From recently io_uring provides an option to allocate a file index for
operation registering fixed files. However, it's utterly unusable with
mixed approaches when for a part of files the userspace knows better
where to place it, as it may race and users don't have any sane way to
pick a slot and hoping it will not be taken.

Let the userspace to register a range of fixed file slots in which the
auto-allocation happens. The use case is splittting the fixed table in
two parts, where on of them is used for auto-allocation and another for
slot-specified operations.

Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/66ab0394e436f38437cf7c44676e1920d09687ad.1656154403.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
include/linux/io_uring_types.h
include/uapi/linux/io_uring.h
io_uring/filetable.c
io_uring/filetable.h
io_uring/io_uring.c
io_uring/rsrc.c