public inbox for io-uring@vger.kernel.org
 help / color / mirror / Atom feed
From: Pavel Begunkov <asml.silence@gmail.com>
To: Caleb Sander Mateos <csander@purestorage.com>
Cc: Jens Axboe <axboe@kernel.dk>,
	io-uring@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] io_uring/net: use REQ_F_IMPORT_BUFFER for send_zc
Date: Wed, 26 Mar 2025 09:52:06 +0000	[thread overview]
Message-ID: <c3b36363-a0a8-44e0-9e0e-3c05c059190a@gmail.com> (raw)
In-Reply-To: <CADUfDZocNe0jm1n3WxO+hHqVcQcgj5PtA4h+S3EsiB0D=-m+dA@mail.gmail.com>

On 3/25/25 14:39, Caleb Sander Mateos wrote:
> On Tue, Mar 25, 2025 at 6:30 AM Pavel Begunkov <asml.silence@gmail.com> wrote:
>>
>> On 3/24/25 15:11, Caleb Sander Mateos wrote:
>>> Instead of a bool field in struct io_sr_msg, use REQ_F_IMPORT_BUFFER to
>>> track whether io_send_zc() has already imported the buffer. This flag
>>> already serves a similar purpose for sendmsg_zc and {read,write}v_fixed.
>>>
>>> Signed-off-by: Caleb Sander Mateos <csander@purestorage.com>
>>> Suggested-by: Pavel Begunkov <asml.silence@gmail.com>
>>> ---
>>>    include/linux/io_uring_types.h | 5 ++++-
>>>    io_uring/net.c                 | 8 +++-----
>>>    2 files changed, 7 insertions(+), 6 deletions(-)
...
>>> @@ -1305,12 +1304,11 @@ int io_send_zc_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
>>>        struct io_ring_ctx *ctx = req->ctx;
>>>        struct io_kiocb *notif;
>>>
>>>        zc->done_io = 0;
>>>        zc->retry = false;
>>> -     zc->imported = false;
>>> -     req->flags |= REQ_F_POLL_NO_LAZY;
>>> +     req->flags |= REQ_F_POLL_NO_LAZY | REQ_F_IMPORT_BUFFER;
>>
>> This function is shared with sendmsg_zc, so if we set it here,
>> it'll trigger io_import_reg_vec() in io_sendmsg_zc() even for
>> non register buffer request.
> 
> Good catch. I keep forgetting which prep and issue functions are
> shared between which opcodes.

No worries, can happen. I'd recommend to run liburing tests,
they're very useful for catching such things. I run it out
of curiosity, it crashes on send-zerocopy.c pretty fast.

-- 
Pavel Begunkov


      reply	other threads:[~2025-03-26  9:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-24 15:11 [PATCH] io_uring/net: use REQ_F_IMPORT_BUFFER for send_zc Caleb Sander Mateos
2025-03-25 13:30 ` Pavel Begunkov
2025-03-25 14:39   ` Caleb Sander Mateos
2025-03-26  9:52     ` Pavel Begunkov [this message]

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=c3b36363-a0a8-44e0-9e0e-3c05c059190a@gmail.com \
    --to=asml.silence@gmail.com \
    --cc=axboe@kernel.dk \
    --cc=csander@purestorage.com \
    --cc=io-uring@vger.kernel.org \
    --cc=linux-kernel@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox