aboutsummaryrefslogtreecommitdiff
path: root/io_uring/opdef.h
AgeCommit message (Collapse)AuthorFilesLines
2022-07-24io_uring: move opcode table to opdef.cJens Axboe1-0/+2
We already have the declarations in opdef.h, move the rest into its own file rather than in the main io_uring.c file. Signed-off-by: Jens Axboe <axboe@kernel.dk>
2022-07-24io_uring: move poll handling into its own fileJens Axboe1-0/+40
Add a io_poll_issue() rather than export the general task_work locking and io_issue_sqe(), and put the io_op_defs definition and structure into a separate header file so that poll can use it. Signed-off-by: Jens Axboe <axboe@kernel.dk>