diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-03-24 13:53:18 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-03-24 13:53:18 +0100 |
commit | 7ef66d186eb95f987a97fb3329b65c840e2dc9bf (patch) | |
tree | 5348c65a930ae46d84d86ea59fd278997d714efe /include | |
parent | io_uring: add flag for disabling provided buffer recycling (diff) | |
download | linux-7ef66d186eb95f987a97fb3329b65c840e2dc9bf.tar.xz linux-7ef66d186eb95f987a97fb3329b65c840e2dc9bf.zip |
io_uring: remove IORING_CQE_F_MSG
This was introduced with the message ring opcode, but isn't strictly
required for the request itself. The sender can encode what is needed
in user_data, which is passed to the receiver. It's unclear if having
a separate flag that essentially says "This CQE did not originate from
an SQE on this ring" provides any real utility to applications. While
we can always re-introduce a flag to provide this information, we cannot
take it away at a later point in time.
Remove the flag while we still can, before it's in a released kernel.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/io_uring.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/uapi/linux/io_uring.h b/include/uapi/linux/io_uring.h index d2be4eb22008..784adc6f6ed2 100644 --- a/include/uapi/linux/io_uring.h +++ b/include/uapi/linux/io_uring.h @@ -201,11 +201,9 @@ struct io_uring_cqe { * * IORING_CQE_F_BUFFER If set, the upper 16 bits are the buffer ID * IORING_CQE_F_MORE If set, parent SQE will generate more CQE entries - * IORING_CQE_F_MSG If set, CQE was generated with IORING_OP_MSG_RING */ #define IORING_CQE_F_BUFFER (1U << 0) #define IORING_CQE_F_MORE (1U << 1) -#define IORING_CQE_F_MSG (1U << 2) enum { IORING_CQE_BUFFER_SHIFT = 16, |