From: Pavel Begunkov <asml.silence@gmail.com>
To: io-uring@vger.kernel.org
Cc: asml.silence@gmail.com
Subject: [PATCH 3/7] io_uring/net: combine sendzc flags writes
Date: Fri, 28 Mar 2025 23:10:56 +0000 [thread overview]
Message-ID: <c519d6f406776c3be3ef988a8339a88e45d1ffd9.1743202294.git.asml.silence@gmail.com> (raw)
In-Reply-To: <cover.1743202294.git.asml.silence@gmail.com>
Save an instruction / trip to the cache and assign some of sendzc flags
together.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
---
io_uring/net.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/io_uring/net.c b/io_uring/net.c
index 78c72806d697..e293f848a686 100644
--- a/io_uring/net.c
+++ b/io_uring/net.c
@@ -1292,7 +1292,6 @@ int io_send_zc_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
zc->done_io = 0;
zc->retry = false;
- req->flags |= REQ_F_POLL_NO_LAZY;
if (unlikely(READ_ONCE(sqe->__pad2[0]) || READ_ONCE(sqe->addr3)))
return -EINVAL;
@@ -1306,7 +1305,7 @@ int io_send_zc_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
notif->cqe.user_data = req->cqe.user_data;
notif->cqe.res = 0;
notif->cqe.flags = IORING_CQE_F_NOTIF;
- req->flags |= REQ_F_NEED_CLEANUP;
+ req->flags |= REQ_F_NEED_CLEANUP | REQ_F_POLL_NO_LAZY;
zc->flags = READ_ONCE(sqe->ioprio);
if (unlikely(zc->flags & ~IO_ZC_FLAGS_COMMON)) {
--
2.48.1
next prev parent reply other threads:[~2025-03-28 23:10 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-28 23:10 [PATCH 0/7] send request cleanups Pavel Begunkov
2025-03-28 23:10 ` [PATCH 1/7] io_uring/net: open code io_sendmsg_copy_hdr() Pavel Begunkov
2025-03-28 23:10 ` [PATCH 2/7] io_uring/net: open code io_net_vec_assign() Pavel Begunkov
2025-03-28 23:10 ` Pavel Begunkov [this message]
2025-03-28 23:10 ` [PATCH 4/7] io_uring/net: unify sendmsg setup with zc Pavel Begunkov
2025-03-28 23:10 ` [PATCH 5/7] io_uring/net: clusterise send vs msghdr branches Pavel Begunkov
2025-03-28 23:10 ` [PATCH 6/7] io_uring/net: set sg_from_iter in advance Pavel Begunkov
2025-03-28 23:11 ` [PATCH 7/7] io_uring/net: import zc ubuf earlier Pavel Begunkov
2025-03-29 11:57 ` [PATCH 0/7] send request cleanups 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=c519d6f406776c3be3ef988a8339a88e45d1ffd9.1743202294.git.asml.silence@gmail.com \
--to=asml.silence@gmail.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox