io_uring: retain top 8bits of uring_cmd flags for kernel internal use
authorMing Lei <ming.lei@redhat.com>
Thu, 28 Sep 2023 12:43:24 +0000 (20:43 +0800)
committerJens Axboe <axboe@kernel.dk>
Thu, 28 Sep 2023 13:31:41 +0000 (07:31 -0600)
Retain top 8bits of uring_cmd flags for kernel internal use, so that we
can move IORING_URING_CMD_POLLED out of uapi header.

Reviewed-by: Gabriel Krisman Bertazi <krisman@suse.de>
Reviewed-by: Anuj Gupta <anuj20.g@samsung.com>
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
include/linux/io_uring.h
include/uapi/linux/io_uring.h
io_uring/io_uring.c
io_uring/uring_cmd.c

index 106cdc55ff3bd6f5f199d1af30eb6322a872d504..ae08d6f66e627d57d530ef20337c3311bef5b156 100644 (file)
@@ -22,6 +22,9 @@ enum io_uring_cmd_flags {
        IO_URING_F_IOPOLL               = (1 << 10),
 };
 
+/* only top 8 bits of sqe->uring_cmd_flags for kernel internal use */
+#define IORING_URING_CMD_POLLED                (1U << 31)
+
 struct io_uring_cmd {
        struct file     *file;
        const struct io_uring_sqe *sqe;
index 683ac2b747212194b8a0ced02e8ad13db97e38ca..425f64eee44eda707e4c2622a5d5accf56d90f7b 100644 (file)
@@ -249,13 +249,12 @@ enum io_uring_op {
 };
 
 /*
- * sqe->uring_cmd_flags
+ * sqe->uring_cmd_flags                top 8bits aren't available for userspace
  * IORING_URING_CMD_FIXED      use registered buffer; pass this flag
  *                             along with setting sqe->buf_index.
- * IORING_URING_CMD_POLLED     driver use only
  */
 #define IORING_URING_CMD_FIXED (1U << 0)
-#define IORING_URING_CMD_POLLED        (1U << 31)
+#define IORING_URING_CMD_MASK  IORING_URING_CMD_FIXED
 
 
 /*
index 2dff4772bf14aa0482d6daad08dbe3693940a740..cb6bd990704594211d848cfa262633c865a4af3d 100644 (file)
@@ -4669,6 +4669,9 @@ static int __init io_uring_init(void)
 
        BUILD_BUG_ON(sizeof(atomic_t) != sizeof(u32));
 
+       /* top 8bits are for internal use */
+       BUILD_BUG_ON((IORING_URING_CMD_MASK & 0xff000000) != 0);
+
        io_uring_optable_init();
 
        /*
index 537795fddc87d9cfea6a3c4b687ece8085dfa76c..a0b0ec5473bfe257a3911ac9bb639c7b86adc120 100644 (file)
@@ -91,7 +91,7 @@ int io_uring_cmd_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
                return -EINVAL;
 
        ioucmd->flags = READ_ONCE(sqe->uring_cmd_flags);
-       if (ioucmd->flags & ~IORING_URING_CMD_FIXED)
+       if (ioucmd->flags & ~IORING_URING_CMD_MASK)
                return -EINVAL;
 
        if (ioucmd->flags & IORING_URING_CMD_FIXED) {