mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	We use task_work for a variety of reasons, but doing completions or triggering rety after poll are by far the hottest two. Use the indirect funtion call wrappers to avoid the indirect function call if CONFIG_RETPOLINE is set. Signed-off-by: Jens Axboe <axboe@kernel.dk>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			776 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			776 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
 | 
						|
#include <linux/pagemap.h>
 | 
						|
 | 
						|
struct io_rw_state {
 | 
						|
	struct iov_iter			iter;
 | 
						|
	struct iov_iter_state		iter_state;
 | 
						|
	struct iovec			fast_iov[UIO_FASTIOV];
 | 
						|
};
 | 
						|
 | 
						|
struct io_async_rw {
 | 
						|
	struct io_rw_state		s;
 | 
						|
	const struct iovec		*free_iovec;
 | 
						|
	size_t				bytes_done;
 | 
						|
	struct wait_page_queue		wpq;
 | 
						|
};
 | 
						|
 | 
						|
int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe);
 | 
						|
int io_read(struct io_kiocb *req, unsigned int issue_flags);
 | 
						|
int io_readv_prep_async(struct io_kiocb *req);
 | 
						|
int io_write(struct io_kiocb *req, unsigned int issue_flags);
 | 
						|
int io_writev_prep_async(struct io_kiocb *req);
 | 
						|
void io_readv_writev_cleanup(struct io_kiocb *req);
 | 
						|
void io_rw_fail(struct io_kiocb *req);
 | 
						|
void io_req_rw_complete(struct io_kiocb *req, struct io_tw_state *ts);
 |