]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
io_uring: correct comment for IORING_SETUP_TASKRUN_FLAG
authorJens Axboe <axboe@kernel.dk>
Sat, 28 Feb 2026 11:56:20 +0000 (04:56 -0700)
committerJens Axboe <axboe@kernel.dk>
Sat, 28 Feb 2026 11:56:20 +0000 (04:56 -0700)
Sync with a recent liburing fix, which corrects the comment explaining
when the IORING_SETUP_TASKRUN_FLAG setup flag is valid to use. May be
use with COOP_TASKRUN or DEFER_TASKRUN, not useful without either of
this task_work mechanisms being used.

Link: https://github.com/axboe/liburing/pull/1543
Signed-off-by: Jens Axboe <axboe@kernel.dk>
include/uapi/linux/io_uring.h

index 6750c383a2ab4ca6d81c0f7c4e839bb43676c88c..1ff16141c8a5b4b62c76d13e8e24085bb7408a47 100644 (file)
@@ -188,7 +188,8 @@ enum io_uring_sqe_flags_bit {
 /*
  * If COOP_TASKRUN is set, get notified if task work is available for
  * running and a kernel transition would be needed to run it. This sets
- * IORING_SQ_TASKRUN in the sq ring flags. Not valid with COOP_TASKRUN.
+ * IORING_SQ_TASKRUN in the sq ring flags. Not valid without COOP_TASKRUN
+ * or DEFER_TASKRUN.
  */
 #define IORING_SETUP_TASKRUN_FLAG      (1U << 9)
 #define IORING_SETUP_SQE128            (1U << 10) /* SQEs are 128 byte */