2022-06-13 13:27:03 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
#include <linux/pagemap.h>
|
|
|
|
|
|
|
|
struct io_async_rw {
|
2024-03-20 21:19:44 +00:00
|
|
|
size_t bytes_done;
|
2024-03-18 22:25:58 +00:00
|
|
|
struct iov_iter iter;
|
|
|
|
struct iov_iter_state iter_state;
|
2024-03-18 22:31:44 +00:00
|
|
|
struct iovec fast_iov;
|
2024-03-18 22:13:01 +00:00
|
|
|
struct iovec *free_iovec;
|
2024-03-18 22:31:44 +00:00
|
|
|
int free_iov_nr;
|
2022-06-13 13:27:03 +00:00
|
|
|
struct wait_page_queue wpq;
|
|
|
|
};
|
|
|
|
|
2024-03-18 22:13:01 +00:00
|
|
|
int io_prep_read_fixed(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
|
|
int io_prep_write_fixed(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
|
|
int io_prep_readv(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
|
|
int io_prep_writev(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
|
|
int io_prep_read(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
|
|
int io_prep_write(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
2022-06-13 13:27:03 +00:00
|
|
|
int io_read(struct io_kiocb *req, unsigned int issue_flags);
|
|
|
|
int io_write(struct io_kiocb *req, unsigned int issue_flags);
|
|
|
|
void io_readv_writev_cleanup(struct io_kiocb *req);
|
2022-09-21 11:17:47 +00:00
|
|
|
void io_rw_fail(struct io_kiocb *req);
|
2023-06-02 14:41:46 +00:00
|
|
|
void io_req_rw_complete(struct io_kiocb *req, struct io_tw_state *ts);
|
2023-09-11 19:35:42 +00:00
|
|
|
int io_read_mshot_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
|
|
int io_read_mshot(struct io_kiocb *req, unsigned int issue_flags);
|
2024-03-20 21:19:44 +00:00
|
|
|
void io_rw_cache_free(const void *entry);
|