From: Pavel Begunkov <[email protected]>
To: Jens Axboe <[email protected]>, [email protected]
Subject: [PATCH liburing v2 1/2] Add timeout update
Date: Mon, 30 Nov 2020 19:17:01 +0000 [thread overview]
Message-ID: <242ea3b5898da635d753ea62747fb16ff84d4eca.1606763705.git.asml.silence@gmail.com> (raw)
In-Reply-To: <[email protected]>
Add io_uring_prep_timeout_update() helper and update io_uring.h.
Signed-off-by: Pavel Begunkov <[email protected]>
---
src/include/liburing.h | 9 +++++++++
src/include/liburing/io_uring.h | 1 +
2 files changed, 10 insertions(+)
diff --git a/src/include/liburing.h b/src/include/liburing.h
index cc32232..ebfc424 100644
--- a/src/include/liburing.h
+++ b/src/include/liburing.h
@@ -326,6 +326,15 @@ static inline void io_uring_prep_timeout_remove(struct io_uring_sqe *sqe,
sqe->timeout_flags = flags;
}
+static inline void io_uring_prep_timeout_update(struct io_uring_sqe *sqe,
+ struct __kernel_timespec *ts,
+ __u64 user_data, unsigned flags)
+{
+ io_uring_prep_rw(IORING_OP_TIMEOUT_REMOVE, sqe, -1,
+ (void *)(unsigned long)user_data, 0, (__u64)ts);
+ sqe->timeout_flags = flags | IORING_TIMEOUT_UPDATE;
+}
+
static inline void io_uring_prep_accept(struct io_uring_sqe *sqe, int fd,
struct sockaddr *addr,
socklen_t *addrlen, int flags)
diff --git a/src/include/liburing/io_uring.h b/src/include/liburing/io_uring.h
index 8555de9..0bb55b0 100644
--- a/src/include/liburing/io_uring.h
+++ b/src/include/liburing/io_uring.h
@@ -155,6 +155,7 @@ enum {
* sqe->timeout_flags
*/
#define IORING_TIMEOUT_ABS (1U << 0)
+#define IORING_TIMEOUT_UPDATE (1U << 1)
/*
* sqe->splice_flags
--
2.24.0
next prev parent reply other threads:[~2020-11-30 19:21 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-30 19:17 [PATCH liburing v2 0/2] test timeout updates Pavel Begunkov
2020-11-30 19:17 ` Pavel Begunkov [this message]
2020-11-30 19:17 ` [PATCH liburing v2 2/2] test/timeout: " Pavel Begunkov
2020-11-30 22:54 ` [PATCH liburing v2 0/2] " 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=242ea3b5898da635d753ea62747fb16ff84d4eca.1606763705.git.asml.silence@gmail.com \
[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