* [PATCH liburing 1/1] liburing: add more zc helpers
@ 2022-09-28 11:02 Pavel Begunkov
2022-09-28 13:53 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: Pavel Begunkov @ 2022-09-28 11:02 UTC (permalink / raw)
To: io-uring; +Cc: Jens Axboe, asml.silence
Add a helper for zc sendmsg and also for zc send with registered buffers
(aka fixed).
Signed-off-by: Pavel Begunkov <[email protected]>
---
src/include/liburing.h | 19 +++++++++++++++++++
test/send-zerocopy.c | 3 +--
2 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/src/include/liburing.h b/src/include/liburing.h
index 902f26a..1d04923 100644
--- a/src/include/liburing.h
+++ b/src/include/liburing.h
@@ -746,6 +746,25 @@ static inline void io_uring_prep_send_zc(struct io_uring_sqe *sqe, int sockfd,
sqe->ioprio = zc_flags;
}
+static inline void io_uring_prep_send_zc_fixed(struct io_uring_sqe *sqe,
+ int sockfd, const void *buf,
+ size_t len, int flags,
+ unsigned zc_flags,
+ unsigned buf_index)
+{
+ io_uring_prep_send_zc(sqe, sockfd, buf, len, flags, zc_flags);
+ sqe->ioprio |= IORING_RECVSEND_FIXED_BUF;
+ sqe->buf_index = buf_index;
+}
+
+static inline void io_uring_prep_sendmsg_zc(struct io_uring_sqe *sqe, int fd,
+ const struct msghdr *msg,
+ unsigned flags)
+{
+ io_uring_prep_sendmsg(sqe, fd, msg, flags);
+ sqe->opcode = IORING_OP_SENDMSG_ZC;
+}
+
static inline void io_uring_prep_send_set_addr(struct io_uring_sqe *sqe,
const struct sockaddr *dest_addr,
__u16 addr_len)
diff --git a/test/send-zerocopy.c b/test/send-zerocopy.c
index 88578e0..31d66e3 100644
--- a/test/send-zerocopy.c
+++ b/test/send-zerocopy.c
@@ -301,8 +301,7 @@ static int do_test_inet_send(struct io_uring *ring, int sock_client, int sock_se
io_uring_prep_send_set_addr(sqe, (const struct sockaddr *)addr,
addr_len);
} else {
- io_uring_prep_sendmsg(sqe, sock_client, &msghdr[i], msg_flags);
- sqe->opcode = IORING_OP_SENDMSG_ZC;
+ io_uring_prep_sendmsg_zc(sqe, sock_client, &msghdr[i], msg_flags);
memset(&msghdr[i], 0, sizeof(msghdr[i]));
iov[i].iov_len = cur_size;
--
2.37.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH liburing 1/1] liburing: add more zc helpers
2022-09-28 11:02 [PATCH liburing 1/1] liburing: add more zc helpers Pavel Begunkov
@ 2022-09-28 13:53 ` Jens Axboe
0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2022-09-28 13:53 UTC (permalink / raw)
To: io-uring, Pavel Begunkov
On Wed, 28 Sep 2022 12:02:58 +0100, Pavel Begunkov wrote:
> Add a helper for zc sendmsg and also for zc send with registered buffers
> (aka fixed).
>
>
Applied, thanks!
[1/1] liburing: add more zc helpers
commit: 82a4dfc212478935f81f0f385da01458e8d5d7ec
Best regards,
--
Jens Axboe
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-09-28 13:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-28 11:02 [PATCH liburing 1/1] liburing: add more zc helpers Pavel Begunkov
2022-09-28 13:53 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox