diff options
author | Pavel Begunkov <asml.silence@gmail.com> | 2021-04-25 16:32:20 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-04-25 19:14:04 +0300 |
commit | fdecb66281e165927059419c3b1de09ffe4f8369 (patch) | |
tree | 5fa876f32cde1d1a417d66f3397cf9d69da07ec1 /include/uapi/linux/io_uring.h | |
parent | 98f0b3b4f1d51911492b9d6eda4add0ec562179b (diff) | |
download | linux-fdecb66281e165927059419c3b1de09ffe4f8369.tar.xz |
io_uring: enumerate dynamic resources
As resources are getting more support and common parts, it'll be more
convenient to index resources and use it for indexing.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/f0be63e9310212d5601d36277c2946ff7a040485.1619356238.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/uapi/linux/io_uring.h')
-rw-r--r-- | include/uapi/linux/io_uring.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/uapi/linux/io_uring.h b/include/uapi/linux/io_uring.h index 5beaa6bbc6db..d363e0c4fd21 100644 --- a/include/uapi/linux/io_uring.h +++ b/include/uapi/linux/io_uring.h @@ -316,6 +316,10 @@ struct io_uring_rsrc_update { __aligned_u64 data; }; +enum { + IORING_RSRC_FILE = 0, +}; + /* Skip updating fd indexes set to this value in the fd table */ #define IORING_REGISTER_FILES_SKIP (-2) |