io_uring/futex: move futexv owned status to struct io_futexv_data io_uring-futex-cleanups
authorJens Axboe <axboe@kernel.dk>
Wed, 4 Jun 2025 15:02:08 +0000 (09:02 -0600)
committerJens Axboe <axboe@kernel.dk>
Wed, 4 Jun 2025 17:04:10 +0000 (11:04 -0600)
Free up a bit of space in the shared futex opcode private data, by
moving the futexv specific futexv_owned out of there and into the struct
specific to vectored futexes.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/futex.c

index 9253b642b4941cf99c6565f381def6577aad1762..246bfb862db94fb528611f2b8fd9cf36566675d5 100644 (file)
@@ -17,7 +17,6 @@ struct io_futex {
        void __user     *uaddr;
        unsigned long   futex_val;
        unsigned long   futex_mask;
-       unsigned long   futexv_owned;
        u32             futex_flags;
        unsigned int    futex_nr;
        bool            futexv_unqueued;
@@ -29,6 +28,7 @@ struct io_futex_data {
 };
 
 struct io_futexv_data {
+       unsigned long           owned;
        struct futex_vector     futexv[];
 };
 
@@ -81,10 +81,9 @@ static void io_futexv_complete(struct io_kiocb *req, io_tw_token_t tw)
        __io_futex_complete(req, tw);
 }
 
-static bool io_futexv_claim(struct io_futex *iof)
+static bool io_futexv_claim(struct io_futexv_data *ifd)
 {
-       if (test_bit(0, &iof->futexv_owned) ||
-           test_and_set_bit_lock(0, &iof->futexv_owned))
+       if (test_bit(0, &ifd->owned) || test_and_set_bit_lock(0, &ifd->owned))
                return false;
        return true;
 }
@@ -99,9 +98,9 @@ static bool __io_futex_cancel(struct io_kiocb *req)
                        return false;
                req->io_task_work.func = io_futex_complete;
        } else {
-               struct io_futex *iof = io_kiocb_to_cmd(req, struct io_futex);
+               struct io_futexv_data *ifd = req->async_data;
 
-               if (!io_futexv_claim(iof))
+               if (!io_futexv_claim(ifd))
                        return false;
                req->io_task_work.func = io_futexv_complete;
        }
@@ -157,9 +156,9 @@ int io_futex_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
 static void io_futex_wakev_fn(struct wake_q_head *wake_q, struct futex_q *q)
 {
        struct io_kiocb *req = q->wake_data;
-       struct io_futex *iof = io_kiocb_to_cmd(req, struct io_futex);
+       struct io_futexv_data *ifd = req->async_data;
 
-       if (!io_futexv_claim(iof))
+       if (!io_futexv_claim(ifd))
                return;
        if (unlikely(!__futex_wake_mark(q)))
                return;
@@ -199,7 +198,6 @@ int io_futexv_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
 
        /* Mark as inflight, so file exit cancelation will find it */
        io_req_track_inflight(req);
-       iof->futexv_owned = 0;
        iof->futexv_unqueued = 0;
        req->flags |= REQ_F_ASYNC_DATA;
        req->async_data = ifd;