diff options
author | Pavel Begunkov <asml.silence@gmail.com> | 2022-09-21 14:17:54 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-09-21 22:15:02 +0300 |
commit | 493108d95f1464ccd101d4e5cfa7e93f1fc64d47 (patch) | |
tree | 1fe9fd8773f4c8a351a20f3cdc796af6f5a074c3 /include/uapi/linux/io_uring.h | |
parent | c4c0009e0b56ef9920020bcade1e45be52653bae (diff) | |
download | linux-493108d95f1464ccd101d4e5cfa7e93f1fc64d47.tar.xz |
io_uring/net: zerocopy sendmsg
Add a zerocopy version of sendmsg.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/6aabc4bdfc0ec78df6ec9328137e394af9d4e7ef.1663668091.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/uapi/linux/io_uring.h')
-rw-r--r-- | include/uapi/linux/io_uring.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/io_uring.h b/include/uapi/linux/io_uring.h index 972b179bc07a..92f29d9505a6 100644 --- a/include/uapi/linux/io_uring.h +++ b/include/uapi/linux/io_uring.h @@ -213,6 +213,7 @@ enum io_uring_op { IORING_OP_SOCKET, IORING_OP_URING_CMD, IORING_OP_SEND_ZC, + IORING_OP_SENDMSG_ZC, /* this goes last, obviously */ IORING_OP_LAST, |