From: Pavel Begunkov <asml.silence@gmail.com>
To: Jens Axboe <axboe@kernel.dk>, io-uring@vger.kernel.org
Subject: Re: [PATCH 8/9] io_uring/msg_ring: add basic wakeup batch support
Date: Wed, 5 Jun 2024 16:32:22 +0100 [thread overview]
Message-ID: <e5146117-b6cd-427d-a25e-366f73552663@gmail.com> (raw)
In-Reply-To: <20240605141933.11975-9-axboe@kernel.dk>
On 6/5/24 14:51, Jens Axboe wrote:
> Factor in the number of overflow entries waiting, on both the msg ring
> and local task_work add side.
Did you forget to add the local tw change to the patch?
> Signed-off-by: Jens Axboe <axboe@kernel.dk>
> ---
> io_uring/msg_ring.c | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/io_uring/msg_ring.c b/io_uring/msg_ring.c
> index 9a7c63f38c46..eeca1563ceed 100644
> --- a/io_uring/msg_ring.c
> +++ b/io_uring/msg_ring.c
> @@ -109,6 +109,8 @@ static void io_msg_add_overflow(struct io_msg *msg,
> u32 flags)
> __releases(&target_ctx->completion_lock)
> {
> + unsigned nr_prev, nr_wait;
> +
> if (list_empty(&target_ctx->cq_overflow_list)) {
> set_bit(IO_CHECK_CQ_OVERFLOW_BIT, &target_ctx->check_cq);
> atomic_or(IORING_SQ_TASKRUN, &target_ctx->rings->sq_flags);
> @@ -117,10 +119,14 @@ static void io_msg_add_overflow(struct io_msg *msg,
> ocqe->cqe.user_data = msg->user_data;
> ocqe->cqe.res = ret;
> ocqe->cqe.flags = flags;
> - target_ctx->nr_overflow++;
> + nr_prev = target_ctx->nr_overflow++;
> list_add_tail(&ocqe->list, &target_ctx->cq_overflow_list);
> spin_unlock(&target_ctx->completion_lock);
> - wake_up_state(target_ctx->submitter_task, TASK_INTERRUPTIBLE);
> + rcu_read_lock();
> + io_defer_tw_count(target_ctx, &nr_wait);
> + nr_prev += nr_wait;
> + io_defer_wake(target_ctx, nr_prev + 1, nr_prev);
> + rcu_read_unlock();
> }
>
> static int io_msg_fill_remote(struct io_msg *msg, unsigned int issue_flags,
--
Pavel Begunkov
next prev parent reply other threads:[~2024-06-05 15:32 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-05 13:51 [PATCHSET v3 0/9] Improve MSG_RING DEFER_TASKRUN performance Jens Axboe
2024-06-05 13:51 ` [PATCH 1/9] io_uring/msg_ring: tighten requirement for remote posting Jens Axboe
2024-06-05 13:51 ` [PATCH 2/9] io_uring: keep track of overflow entry count Jens Axboe
2024-06-05 13:51 ` [PATCH 3/9] io_uring: abstract out helpers for DEFER_TASKRUN wakeup batching Jens Axboe
2024-06-05 13:51 ` [PATCH 4/9] io_uring/msg_ring: avoid double indirection task_work for data messages Jens Axboe
2024-06-05 13:51 ` [PATCH 5/9] io_uring/msg_ring: avoid double indirection task_work for fd passing Jens Axboe
2024-06-05 13:51 ` [PATCH 6/9] io_uring/msg_ring: add an alloc cache for CQE entries Jens Axboe
2024-06-05 13:51 ` [PATCH 7/9] io_uring/msg_ring: remove callback_head from struct io_msg Jens Axboe
2024-06-05 13:51 ` [PATCH 8/9] io_uring/msg_ring: add basic wakeup batch support Jens Axboe
2024-06-05 15:32 ` Pavel Begunkov [this message]
2024-06-05 15:50 ` Jens Axboe
2024-06-05 13:51 ` [PATCH 9/9] io_uring/msg_ring: remove non-remote message passing Jens Axboe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e5146117-b6cd-427d-a25e-366f73552663@gmail.com \
--to=asml.silence@gmail.com \
--cc=axboe@kernel.dk \
--cc=io-uring@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.