2022-06-13 07:27:03 -06:00
// SPDX-License-Identifier: GPL-2.0
# include <linux/pagemap.h>
struct io_async_rw {
2024-03-20 15:19:44 -06:00
size_t bytes_done ;
2024-03-18 16:25:58 -06:00
struct iov_iter iter ;
struct iov_iter_state iter_state ;
2024-03-18 16:31:44 -06:00
struct iovec fast_iov ;
2024-03-18 16:13:01 -06:00
struct iovec * free_iovec ;
2024-03-18 16:31:44 -06:00
int free_iov_nr ;
2022-06-13 07:27:03 -06:00
struct wait_page_queue wpq ;
} ;
2024-03-18 16:13:01 -06: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 07:27:03 -06: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 12:17:47 +01:00
void io_rw_fail ( struct io_kiocb * req ) ;
2023-06-02 08:41:46 -06:00
void io_req_rw_complete ( struct io_kiocb * req , struct io_tw_state * ts ) ;
2023-09-11 13:35:42 -06: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 15:19:44 -06:00
void io_rw_cache_free ( const void * entry ) ;