Merge tag 'sched-urgent-2024-06-02' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / io_uring / net.h
CommitLineData
f9ead18c
JA
1// SPDX-License-Identifier: GPL-2.0
2
3#include <linux/net.h>
4#include <linux/uio.h>
5
f9ead18c 6struct io_async_msghdr {
e1fe7ee8 7#if defined(CONFIG_NET)
414d0f45 8 struct iovec fast_iov;
f9ead18c
JA
9 /* points to an allocated iov, if NULL we use fast_iov instead */
10 struct iovec *free_iov;
414d0f45
JA
11 int free_iov_nr;
12 int namelen;
75191341
JA
13 __kernel_size_t controllen;
14 __kernel_size_t payloadlen;
f9ead18c
JA
15 struct sockaddr __user *uaddr;
16 struct msghdr msg;
17 struct sockaddr_storage addr;
e1fe7ee8 18#endif
f9ead18c
JA
19};
20
e1fe7ee8
BL
21#if defined(CONFIG_NET)
22
f9ead18c
JA
23int io_shutdown_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
24int io_shutdown(struct io_kiocb *req, unsigned int issue_flags);
25
f9ead18c
JA
26void io_sendmsg_recvmsg_cleanup(struct io_kiocb *req);
27int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
28int io_sendmsg(struct io_kiocb *req, unsigned int issue_flags);
516e82f0 29
f9ead18c
JA
30int io_send(struct io_kiocb *req, unsigned int issue_flags);
31
f9ead18c
JA
32int io_recvmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
33int io_recvmsg(struct io_kiocb *req, unsigned int issue_flags);
34int io_recv(struct io_kiocb *req, unsigned int issue_flags);
35
7e6b638e
PB
36void io_sendrecv_fail(struct io_kiocb *req);
37
f9ead18c
JA
38int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
39int io_accept(struct io_kiocb *req, unsigned int issue_flags);
40
41int io_socket_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
42int io_socket(struct io_kiocb *req, unsigned int issue_flags);
43
f9ead18c
JA
44int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
45int io_connect(struct io_kiocb *req, unsigned int issue_flags);
43e0bbbd 46
b0e9b551 47int io_send_zc(struct io_kiocb *req, unsigned int issue_flags);
493108d9 48int io_sendmsg_zc(struct io_kiocb *req, unsigned int issue_flags);
b0e9b551
PB
49int io_send_zc_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
50void io_send_zc_cleanup(struct io_kiocb *req);
06a5464b 51
414d0f45 52void io_netmsg_cache_free(const void *entry);
43e0bbbd 53#else
414d0f45 54static inline void io_netmsg_cache_free(const void *entry)
43e0bbbd
JA
55{
56}
f9ead18c 57#endif