diff options
author | Breno Leitao <leitao@debian.org> | 2023-10-16 16:47:43 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2023-10-20 01:42:03 +0300 |
commit | 5fea44a6e05b86bf49019fbbf2ab30098d03e0dc (patch) | |
tree | fe06b868c1b334f9f12992c0b895e7e170134996 /include/linux/io_uring.h | |
parent | 0b05b0cd78c92371fdde6333d006f39eaf9e0860 (diff) | |
download | linux-5fea44a6e05b86bf49019fbbf2ab30098d03e0dc.tar.xz |
io_uring/cmd: Pass compat mode in issue_flags
Create a new flag to track if the operation is running compat mode.
This basically check the context->compat and pass it to the issue_flags,
so, it could be queried later in the callbacks.
Signed-off-by: Breno Leitao <leitao@debian.org>
Reviewed-by: Gabriel Krisman Bertazi <krisman@suse.de>
Link: https://lore.kernel.org/r/20231016134750.1381153-6-leitao@debian.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/io_uring.h')
-rw-r--r-- | include/linux/io_uring.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/io_uring.h b/include/linux/io_uring.h index b4391e0a9bc8..aefb73eeeebf 100644 --- a/include/linux/io_uring.h +++ b/include/linux/io_uring.h @@ -23,6 +23,7 @@ enum io_uring_cmd_flags { /* set when uring wants to cancel a previously issued command */ IO_URING_F_CANCEL = (1 << 11), + IO_URING_F_COMPAT = (1 << 12), }; /* only top 8 bits of sqe->uring_cmd_flags for kernel internal use */ |