From: Pavel Begunkov <[email protected]>
To: Xiaoguang Wang <[email protected]>,
[email protected]
Cc: [email protected], [email protected]
Subject: Re: [PATCH 5.11 2/2] io_uring: don't take percpu_ref operations for registered files in IOPOLL mode
Date: Tue, 17 Nov 2020 10:43:40 +0000 [thread overview]
Message-ID: <[email protected]> (raw)
In-Reply-To: <[email protected]>
On 17/11/2020 06:17, Xiaoguang Wang wrote:
> In io_file_get() and io_put_file(), currently we use percpu_ref_get() and
> percpu_ref_put() for registered files, but it's hard to say they're very
> light-weight synchronization primitives. In one our x86 machine, I get below
> perf data(registered files enabled):
> Samples: 480K of event 'cycles', Event count (approx.): 298552867297
> Overhead Comman Shared Object Symbol
> 0.45% :53243 [kernel.vmlinux] [k] io_file_get
Do you have throughput/latency numbers? In my experience for polling for
such small overheads all CPU cycles you win earlier in the stack will be
just burned on polling, because it would still wait for the same fixed*
time for the next response by device. fixed* here means post-factum but
still mostly independent of how your host machine behaves.
e.g. you kick io_uring at a moment K, at device responses at a moment
K+M. And regardless of what you do in io_uring, the event won't complete
earlier than after M.
That's not the whole story, but as you penalising non-IOPOLL and complicate
it, I just want to confirm that you really get any extra performance from it.
Moreover, your drop (0.45%->0.25%) is just 0.20%, and it's comparable with
the rest of the function (left 0.25%), that's just a dozen of instructions.
>
> Currently I don't find any good and generic solution for this issue, but
> in IOPOLL mode, given that we can always ensure get/put registered files
> under uring_lock, we can use a simple and plain u64 counter to synchronize
> with registered files update operations in __io_sqe_files_update().
>
> With this patch, perf data show shows:
> Samples: 480K of event 'cycles', Event count (approx.): 298811248406
> Overhead Comma Shared Object Symbol
> 0.25% :4182 [kernel.vmlinux] [k] io_file_get
>
> Signed-off-by: Xiaoguang Wang <[email protected]>
> ---
> fs/io_uring.c | 40 ++++++++++++++++++++++++++++++++++------
> 1 file changed, 34 insertions(+), 6 deletions(-)
>
> diff --git a/fs/io_uring.c b/fs/io_uring.c
> index 219609c38e48..0fa48ea50ff9 100644
> --- a/fs/io_uring.c
> +++ b/fs/io_uring.c
> @@ -201,6 +201,11 @@ struct fixed_file_table {
>
> struct fixed_file_ref_node {
> struct percpu_ref refs;
> + /*
> + * Track the number of reqs that reference this node, currently it's
> + * only used in IOPOLL mode.
> + */
> + u64 count;
> struct list_head node;
> struct list_head file_list;
> struct fixed_file_data *file_data;
> @@ -1926,10 +1931,17 @@ static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
> static inline void io_put_file(struct io_kiocb *req, struct file *file,
> bool fixed)
> {
> - if (fixed)
> - percpu_ref_put(&req->ref_node->refs);
> - else
> + if (fixed) {
> + /* See same comments in io_file_get(). */
> + if (req->ctx->flags & IORING_SETUP_IOPOLL) {
> + if (!--req->ref_node->count)
> + percpu_ref_kill(&req->ref_node->refs);
> + } else {
> + percpu_ref_put(&req->ref_node->refs);
> + }
> + } else {
> fput(file);
> + }
> }
>
> static void io_dismantle_req(struct io_kiocb *req)
> @@ -6344,8 +6356,16 @@ static struct file *io_file_get(struct io_submit_state *state,
> fd = array_index_nospec(fd, ctx->nr_user_files);
> file = io_file_from_index(ctx, fd);
> if (file) {
> + /*
> + * IOPOLL mode can always ensure get/put registered files under uring_lock,
> + * so we can use a simple plain u64 counter to synchronize with registered
> + * files update operations in __io_sqe_files_update.
> + */
> req->ref_node = ctx->file_data->node;
> - percpu_ref_get(&req->ref_node->refs);
> + if (ctx->flags & IORING_SETUP_IOPOLL)
> + req->ref_node->count++;
> + else
> + percpu_ref_get(&req->ref_node->refs);
> }
> } else {
> trace_io_uring_file_get(ctx, fd);
> @@ -7215,7 +7235,12 @@ static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
> ref_node = list_first_entry(&data->ref_list,
> struct fixed_file_ref_node, node);
> spin_unlock(&data->lock);
> - if (ref_node)
> + /*
> + * If count is not zero, that means we're in IOPOLL mode, and there are
> + * still reqs that reference this ref_node, let the final req do the
> + * percpu_ref_kill job.
> + */
> + if (ref_node && (!--ref_node->count))
> percpu_ref_kill(&ref_node->refs);
>
> percpu_ref_kill(&data->refs);
> @@ -7625,6 +7650,7 @@ static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
> INIT_LIST_HEAD(&ref_node->node);
> INIT_LIST_HEAD(&ref_node->file_list);
> ref_node->file_data = ctx->file_data;
> + ref_node->count = 1;
> return ref_node;
> }
>
> @@ -7877,7 +7903,9 @@ static int __io_sqe_files_update(struct io_ring_ctx *ctx,
> }
>
> if (needs_switch) {
> - percpu_ref_kill(&data->node->refs);
> + /* See same comments in io_sqe_files_unregister(). */
> + if (!--data->node->count)
> + percpu_ref_kill(&data->node->refs);
> spin_lock(&data->lock);
> list_add(&ref_node->node, &data->ref_list);
> data->node = ref_node;
>
--
Pavel Begunkov
next prev parent reply other threads:[~2020-11-17 10:47 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-17 6:17 [PATCH 5.11 0/2] registered files improvements for IOPOLL mode Xiaoguang Wang
2020-11-17 6:17 ` [PATCH 5.11 1/2] io_uring: keep a pointer ref_node in io_kiocb Xiaoguang Wang
2020-11-17 6:17 ` [PATCH 5.11 2/2] io_uring: don't take percpu_ref operations for registered files in IOPOLL mode Xiaoguang Wang
2020-11-17 10:43 ` Pavel Begunkov [this message]
2020-11-17 16:21 ` Xiaoguang Wang
2020-11-17 16:42 ` Pavel Begunkov
2020-11-17 16:30 ` Jens Axboe
2020-11-17 16:58 ` Pavel Begunkov
2020-11-18 1:42 ` Jens Axboe
2020-11-18 13:59 ` Pavel Begunkov
2020-11-18 14:59 ` Jens Axboe
2020-11-18 15:36 ` Xiaoguang Wang
2020-11-18 15:52 ` Pavel Begunkov
2020-11-18 15:57 ` 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 \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox