diff options
author | Pavel Begunkov <asml.silence@gmail.com> | 2024-11-18 16:14:34 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2024-11-18 17:10:49 +0100 |
commit | c750629caeca01979da3403f4bebecda88713233 (patch) | |
tree | 63aa48378d959491ff1a9741048de99ace01f302 /include/uapi | |
parent | io_uring/region: fix error codes after failed vmap (diff) | |
download | linux-c750629caeca01979da3403f4bebecda88713233.tar.xz linux-c750629caeca01979da3403f4bebecda88713233.zip |
io_uring: remove io_uring_cqwait_reg_arg
A separate wait argument registration API was removed, also delete
leftover uapi definitions.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/143b6a53591badac23632d3e6fa3e5db4b342ee2.1731942445.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/linux/io_uring.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/uapi/linux/io_uring.h b/include/uapi/linux/io_uring.h index 4418d0192959..aac9a4f8fa9a 100644 --- a/include/uapi/linux/io_uring.h +++ b/include/uapi/linux/io_uring.h @@ -874,20 +874,6 @@ enum { }; /* - * Argument for IORING_REGISTER_CQWAIT_REG, registering a region of - * struct io_uring_reg_wait that can be indexed when io_uring_enter(2) is - * called rather than pass in a wait argument structure separately. - */ -struct io_uring_cqwait_reg_arg { - __u32 flags; - __u32 struct_size; - __u32 nr_entries; - __u32 pad; - __u64 user_addr; - __u64 pad2[3]; -}; - -/* * Argument for io_uring_enter(2) with * IORING_GETEVENTS | IORING_ENTER_EXT_ARG_REG set, where the actual argument * is an index into a previously registered fixed wait region described by |