From: Marcelo Diop-Gonzalez <marcelo827@gmail.com>
To: axboe@kernel.dk
Cc: io-uring@vger.kernel.org, Marcelo Diop-Gonzalez <marcelo827@gmail.com>
Subject: [PATCH liburing] Don't enter the kernel to wait on cqes if they are already available.
Date: Thu, 3 Dec 2020 11:07:06 -0500 [thread overview]
Message-ID: <20201203160706.4841-1-marcelo827@gmail.com> (raw)
In _io_uring_get_cqe(), if we can see from userspace that there are
already wait_nr cqes available, then there is no need to call
__sys_io_uring_enter2 (unless we have to submit IO or flush overflow),
since the kernel will just end up returning immediately after
performing the same check, anyway.
Signed-off-by: Marcelo Diop-Gonzalez <marcelo827@gmail.com>
---
src/queue.c | 39 +++++++++++++++++++++++++--------------
1 file changed, 25 insertions(+), 14 deletions(-)
diff --git a/src/queue.c b/src/queue.c
index 53ca588..df388f6 100644
--- a/src/queue.c
+++ b/src/queue.c
@@ -39,29 +39,38 @@ static inline bool cq_ring_needs_flush(struct io_uring *ring)
}
static int __io_uring_peek_cqe(struct io_uring *ring,
- struct io_uring_cqe **cqe_ptr)
+ struct io_uring_cqe **cqe_ptr,
+ unsigned *nr_available)
{
struct io_uring_cqe *cqe;
- unsigned head;
int err = 0;
+ unsigned available;
+ unsigned mask = *ring->cq.kring_mask;
do {
- io_uring_for_each_cqe(ring, head, cqe)
+ unsigned tail = io_uring_smp_load_acquire(ring->cq.ktail);
+ unsigned head = *ring->cq.khead;
+
+ cqe = NULL;
+ available = tail - head;
+ if (!available)
break;
- if (cqe) {
- if (cqe->user_data == LIBURING_UDATA_TIMEOUT) {
- if (cqe->res < 0)
- err = cqe->res;
- io_uring_cq_advance(ring, 1);
- if (!err)
- continue;
- cqe = NULL;
- }
+
+ cqe = &ring->cq.cqes[head & mask];
+ if (cqe->user_data == LIBURING_UDATA_TIMEOUT) {
+ if (cqe->res < 0)
+ err = cqe->res;
+ io_uring_cq_advance(ring, 1);
+ if (!err)
+ continue;
+ cqe = NULL;
}
+
break;
} while (1);
*cqe_ptr = cqe;
+ *nr_available = available;
return err;
}
@@ -83,8 +92,9 @@ static int _io_uring_get_cqe(struct io_uring *ring, struct io_uring_cqe **cqe_pt
do {
bool cq_overflow_flush = false;
unsigned flags = 0;
+ unsigned nr_available;
- err = __io_uring_peek_cqe(ring, &cqe);
+ err = __io_uring_peek_cqe(ring, &cqe, &nr_available);
if (err)
break;
if (!cqe && !to_wait && !data->submit) {
@@ -100,7 +110,8 @@ static int _io_uring_get_cqe(struct io_uring *ring, struct io_uring_cqe **cqe_pt
flags = IORING_ENTER_GETEVENTS | data->get_flags;
if (data->submit)
sq_ring_needs_enter(ring, &flags);
- if (data->wait_nr || data->submit || cq_overflow_flush)
+ if (data->wait_nr > nr_available || data->submit ||
+ cq_overflow_flush)
ret = __sys_io_uring_enter2(ring->ring_fd, data->submit,
data->wait_nr, flags, data->arg,
data->sz);
--
2.20.1
next reply other threads:[~2020-12-03 16:08 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-03 16:07 Marcelo Diop-Gonzalez [this message]
2020-12-07 15:41 ` [PATCH liburing] Don't enter the kernel to wait on cqes if they are already available 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=20201203160706.4841-1-marcelo827@gmail.com \
--to=marcelo827@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.