mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
5916943943
There are opcodes that need ->async_data only in some cases and allocation it unconditionally may hurt performance. Add an option to opdef to make move the allocation part from the core io_uring to opcode specific code. Note, we can't just set opdef->async_size to zero because there are other helpers that rely on it, e.g. io_alloc_async_data(). Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/9dc62be9e88dd0ed63c48365340e8922d2498293.1661342812.git.asml.silence@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef IOU_OP_DEF_H
|
|
#define IOU_OP_DEF_H
|
|
|
|
struct io_op_def {
|
|
/* needs req->file assigned */
|
|
unsigned needs_file : 1;
|
|
/* should block plug */
|
|
unsigned plug : 1;
|
|
/* hash wq insertion if file is a regular file */
|
|
unsigned hash_reg_file : 1;
|
|
/* unbound wq insertion if file is a non-regular file */
|
|
unsigned unbound_nonreg_file : 1;
|
|
/* set if opcode supports polled "wait" */
|
|
unsigned pollin : 1;
|
|
unsigned pollout : 1;
|
|
unsigned poll_exclusive : 1;
|
|
/* op supports buffer selection */
|
|
unsigned buffer_select : 1;
|
|
/* opcode is not supported by this kernel */
|
|
unsigned not_supported : 1;
|
|
/* skip auditing */
|
|
unsigned audit_skip : 1;
|
|
/* supports ioprio */
|
|
unsigned ioprio : 1;
|
|
/* supports iopoll */
|
|
unsigned iopoll : 1;
|
|
/* opcode specific path will handle ->async_data allocation if needed */
|
|
unsigned manual_alloc : 1;
|
|
/* size of async data needed, if any */
|
|
unsigned short async_size;
|
|
|
|
const char *name;
|
|
|
|
int (*prep)(struct io_kiocb *, const struct io_uring_sqe *);
|
|
int (*issue)(struct io_kiocb *, unsigned int);
|
|
int (*prep_async)(struct io_kiocb *);
|
|
void (*cleanup)(struct io_kiocb *);
|
|
};
|
|
|
|
extern const struct io_op_def io_op_defs[];
|
|
|
|
void io_uring_optable_init(void);
|
|
#endif
|