summaryrefslogtreecommitdiff
path: root/io_uring/io_uring.c
AgeCommit message (Expand)AuthorFilesLines
2022-07-25io_uring: remove unused IO_REQ_CACHE_SIZE definedJens Axboe1-1/+0
2022-07-25io_uring: don't set REQ_F_COMPLETE_INLINE in twPavel Begunkov1-1/+0
2022-07-25io_uring: remove check_cq checking from hot pathsPavel Begunkov1-15/+19
2022-07-25io_uring: never defer-complete multi-apollPavel Begunkov1-1/+1
2022-07-25io_uring: move small helpers to headersPavel Begunkov1-17/+0
2022-07-25io_uring: move opcode table to opdef.cJens Axboe1-468/+1
2022-07-25io_uring: move read/write related opcodes to its own fileJens Axboe1-1230/+9
2022-07-25io_uring: move remaining file table manipulation to filetable.cJens Axboe1-82/+0
2022-07-25io_uring: move rsrc related data, core, and commandsJens Axboe1-1412/+2
2022-07-25io_uring: split provided buffers handling into its own fileJens Axboe1-600/+2
2022-07-25io_uring: move cancelation into its own fileJens Axboe1-176/+1
2022-07-25io_uring: move poll handling into its own fileJens Axboe1-826/+16
2022-07-25io_uring: add opcode name to io_op_defsJens Axboe1-98/+52
2022-07-25io_uring: include and forward-declaration sanitationJens Axboe1-12/+5
2022-07-25io_uring: move io_uring_task (tctx) helpers into its own fileJens Axboe1-364/+4
2022-07-25io_uring: move fdinfo helpers to its own fileJens Axboe1-207/+3
2022-07-25io_uring: use io_is_uring_fops() consistentlyJens Axboe1-8/+8
2022-07-25io_uring: move SQPOLL related handling into its own fileJens Axboe1-461/+6
2022-07-25io_uring: move timeout opcodes and handling into its own fileJens Axboe1-658/+9
2022-07-25io_uring: move our reference counting into a headerJens Axboe1-42/+1
2022-07-25io_uring: move msg_ring into its own fileJens Axboe1-54/+1
2022-07-25io_uring: split network related opcodes into its own fileJens Axboe1-834/+39
2022-07-25io_uring: move statx handling to its own fileJens Axboe1-61/+1
2022-07-25io_uring: move epoll handler to its own fileJens Axboe1-49/+1
2022-07-25io_uring: add a dummy -EOPNOTSUPP prep handlerJens Axboe1-9/+14
2022-07-25io_uring: move uring_cmd handling to its own fileJens Axboe1-123/+4
2022-07-25io_uring: split out open/close operationsJens Axboe1-297/+14
2022-07-25io_uring: separate out file table handling codeJens Axboe1-86/+0
2022-07-25io_uring: split out fadvise/madvise operationsJens Axboe1-84/+1
2022-07-25io_uring: split out fs related sync/fallocate functionsJens Axboe1-96/+1
2022-07-25io_uring: split out splice related operationsJens Axboe1-129/+4
2022-07-25io_uring: split out filesystem related operationsJens Axboe1-282/+1
2022-07-25io_uring: move nop into its own fileJens Axboe1-14/+1
2022-07-25io_uring: move xattr related opcodes to its own fileJens Axboe1-246/+2
2022-07-25io_uring: handle completions in the coreJens Axboe1-134/+137
2022-07-25io_uring: set completion results upfrontJens Axboe1-12/+9
2022-07-25io_uring: add io_uring_types.hJens Axboe1-488/+3
2022-07-25io_uring: define a request type cleanup handlerJens Axboe1-69/+86
2022-07-25io_uring: unify struct io_symlink and io_hardlinkJens Axboe1-20/+7
2022-07-25io_uring: convert iouring_cmd to io_cmd_typeJens Axboe1-8/+10
2022-07-25io_uring: convert xattr to use io_cmd_typeJens Axboe1-10/+9
2022-07-25io_uring: convert rsrc_update to io_cmd_typeJens Axboe1-16/+19
2022-07-25io_uring: convert msg and nop to io_cmd_typeJens Axboe1-9/+9
2022-07-25io_uring: convert splice to use io_cmd_typeJens Axboe1-5/+4
2022-07-25io_uring: convert epoll to io_cmd_typeJens Axboe1-7/+8
2022-07-25io_uring: convert file system request types to use io_cmd_typeJens Axboe1-45/+57
2022-07-25io_uring: convert madvise/fadvise to use io_cmd_typeJens Axboe1-10/+12
2022-07-25io_uring: convert open/close path to use io_cmd_typeJens Axboe1-32/+40
2022-07-25io_uring: convert timeout path to use io_cmd_typeJens Axboe1-49/+68
2022-07-25io_uring: convert cancel path to use io_cmd_typeJens Axboe1-11/+13