From: Xiaoguang Wang <[email protected]>
To: [email protected]
Cc: [email protected], [email protected],
Xiaoguang Wang <[email protected]>
Subject: [LIBURING] Check cq ring overflow status
Date: Tue, 7 Jul 2020 21:25:41 +0800 [thread overview]
Message-ID: <[email protected]> (raw)
If cq ring has been overflowed, need to enter kernel to flush cqes.
Signed-off-by: Xiaoguang Wang <[email protected]>
---
src/include/liburing.h | 1 +
src/include/liburing/io_uring.h | 2 +-
src/queue.c | 22 +++++++++++++++++-----
src/setup.c | 2 ++
4 files changed, 21 insertions(+), 6 deletions(-)
diff --git a/src/include/liburing.h b/src/include/liburing.h
index 0505a4f..9f7df1f 100644
--- a/src/include/liburing.h
+++ b/src/include/liburing.h
@@ -46,6 +46,7 @@ struct io_uring_cq {
unsigned *kring_entries;
unsigned *kflags;
unsigned *koverflow;
+ unsigned *kcheck_overflow;
struct io_uring_cqe *cqes;
size_t ring_sz;
diff --git a/src/include/liburing/io_uring.h b/src/include/liburing/io_uring.h
index 6a73522..15e273b 100644
--- a/src/include/liburing/io_uring.h
+++ b/src/include/liburing/io_uring.h
@@ -211,7 +211,7 @@ struct io_cqring_offsets {
__u32 overflow;
__u32 cqes;
__u32 flags;
- __u32 resv1;
+ __u32 check_overflow;
__u64 resv2;
};
diff --git a/src/queue.c b/src/queue.c
index 88e0294..36f00bf 100644
--- a/src/queue.c
+++ b/src/queue.c
@@ -32,6 +32,14 @@ static inline bool sq_ring_needs_enter(struct io_uring *ring,
return false;
}
+static inline bool cq_ring_needs_flush(struct io_uring *ring)
+{
+ if (!ring->cq.kcheck_overflow)
+ return false;
+
+ return IO_URING_READ_ONCE(*ring->cq.kcheck_overflow);
+}
+
static int __io_uring_peek_cqe(struct io_uring *ring,
struct io_uring_cqe **cqe_ptr)
{
@@ -68,21 +76,25 @@ int __io_uring_get_cqe(struct io_uring *ring, struct io_uring_cqe **cqe_ptr,
do {
unsigned flags = 0;
+ bool cq_overflow_flush = false;
err = __io_uring_peek_cqe(ring, &cqe);
if (err)
break;
- if (!cqe && !to_wait && !submit) {
- err = -EAGAIN;
- break;
+ if (!cqe) {
+ cq_overflow_flush = cq_ring_needs_flush(ring);
+ if (!to_wait && !submit && !cq_overflow_flush) {
+ err = -EAGAIN;
+ break;
+ }
}
if (wait_nr && cqe)
wait_nr--;
- if (wait_nr)
+ if (wait_nr || cq_overflow_flush)
flags = IORING_ENTER_GETEVENTS;
if (submit)
sq_ring_needs_enter(ring, submit, &flags);
- if (wait_nr || submit)
+ if (wait_nr || submit || cq_overflow_flush)
ret = __sys_io_uring_enter(ring->ring_fd, submit,
wait_nr, flags, sigmask);
if (ret < 0) {
diff --git a/src/setup.c b/src/setup.c
index 860c112..1a03cc3 100644
--- a/src/setup.c
+++ b/src/setup.c
@@ -78,6 +78,8 @@ err:
cq->cqes = cq->ring_ptr + p->cq_off.cqes;
if (p->cq_off.flags)
cq->kflags = cq->ring_ptr + p->cq_off.flags;
+ if (p->cq_off.check_overflow)
+ cq->kcheck_overflow = cq->ring_ptr + p->cq_off.check_overflow;
return 0;
}
--
2.17.2
reply other threads:[~2020-07-07 13:25 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20200707132541.2107-1-xiaoguang.wang@linux.alibaba.com \
[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