public inbox for [email protected]
 help / color / mirror / Atom feed
* [RFC PATCH liburing v1 0/5] liburing: Add sendto(2) and recvfrom(2) support
@ 2021-12-30 17:50 Ammar Faizi
  2021-12-30 17:50 ` [RFC PATCH liburing v1 1/5] .gitignore: Add `/test/xattr` and `/test/getdents` Ammar Faizi
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Ammar Faizi @ 2021-12-30 17:50 UTC (permalink / raw)
  To: Jens Axboe
  Cc: io-uring Mailing List, Pavel Begunkov, David S . Miller,
	Jakub Kicinski, netdev, linux-kernel, Ammar Faizi, Nugra

Hello,

I submitted an RFC patchset to add sendto(2) and recvfrom(2) support
for io_uring. This RFC patchset adds the support for the liburing.

There are 5 patches in this series. 4 from me. 1 from Nugra.

For PATCH 1/5, it is just a .gitignore clean up.

## Changes Summary
 - Update io_uring.h header (sync with the kernel).

 - Add `io_uring_prep_{sendto,sendto}` functions.

 - Add test program for `IORING_OP_SENDTO` and `IORING_OP_RECVFROM`.

 - Add documentation for `io_uring_prep_{sendto,sendto}` functions.


## How to test

This patchset is based on branch "xattr-getdents64" commit:

  18d71076f6c97e1b25aa0e3b0e12a913ec4717fa ("src/include/liburing.h: style cleanups")


Signed-off-by: Nugra <[email protected]>
Signed-off-by: Ammar Faizi <[email protected]>
---

Ammar Faizi (4):
  .gitignore: Add `/test/xattr` and `/test/getdents`
  io_uring.h: Add `IORING_OP_SENDTO` and `IORING_OP_RECVFROM`
  liburing.h: Add `io_uring_prep_{sendto,sendto}` helper
  test: Add sendto_recvfrom test program

Nugra (1):
  man: Add `io_uring_prep_{sendto,recvfrom}` docs

 .gitignore                      |   3 +
 man/io_uring_prep_recvfrom.3    |  33 +++
 man/io_uring_prep_sendto.3      |  34 +++
 src/include/liburing.h          |  22 ++
 src/include/liburing/io_uring.h |   2 +
 test/Makefile                   |   2 +
 test/sendto_recvfrom.c          | 384 ++++++++++++++++++++++++++++++++
 7 files changed, 480 insertions(+)
 create mode 100644 man/io_uring_prep_recvfrom.3
 create mode 100644 man/io_uring_prep_sendto.3
 create mode 100644 test/sendto_recvfrom.c


base-commit: 18d71076f6c97e1b25aa0e3b0e12a913ec4717fa
-- 
2.32.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-12-30 17:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-30 17:50 [RFC PATCH liburing v1 0/5] liburing: Add sendto(2) and recvfrom(2) support Ammar Faizi
2021-12-30 17:50 ` [RFC PATCH liburing v1 1/5] .gitignore: Add `/test/xattr` and `/test/getdents` Ammar Faizi
2021-12-30 17:50 ` [RFC PATCH liburing v1 2/5] io_uring.h: Add `IORING_OP_SENDTO` and `IORING_OP_RECVFROM` Ammar Faizi
2021-12-30 17:50 ` [RFC PATCH liburing v1 3/5] liburing.h: Add `io_uring_prep_{sendto,sendto}` helper Ammar Faizi
2021-12-30 17:50 ` [RFC PATCH liburing v1 4/5] test: Add sendto_recvfrom test program Ammar Faizi
2021-12-30 17:50 ` [RFC PATCH liburing v1 5/5] man: Add `io_uring_prep_{sendto,recvfrom}` docs Ammar Faizi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox