summaryrefslogtreecommitdiffstats
path: root/io_uring
Commit message (Expand)AuthorAgeFilesLines
* io_uring: ensure '0' is returned on file registration successJens Axboe2024-04-101-1/+1
* io_uring: don't save/restore iowait stateJens Axboe2024-03-261-3/+2
* io_uring: drop any code related to SCM_RIGHTSJens Axboe2024-03-261-208/+3
* io_uring/unix: drop usage of io_uring socketJens Axboe2024-03-261-13/+5
* io_uring/rw: ensure io->bytes_done is always initializedJens Axboe2024-01-251-3/+6
* io_uring/af_unix: disable sending io_uring over socketsPavel Begunkov2023-12-131-55/+0
* io_uring: fix mutex_unlock with unreferenced ctxPavel Begunkov2023-12-131-6/+3
* io_uring: fix off-by one bvec indexKeith Busch2023-12-031-1/+1
* io_uring/fs: consider link->flags when getting path for LINKATCharles Mirabile2023-12-031-1/+1
* io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pidJens Axboe2023-11-281-6/+12
* io_uring/fs: remove sqe->rw_flags checking from LINKATJens Axboe2023-10-061-1/+1
* io_uring: break iopolling on signalPavel Begunkov2023-09-191-0/+5
* io_uring: break out of iowq iopoll on teardownPavel Begunkov2023-09-193-1/+13
* io_uring: always lock in io_apoll_task_funcPavel Begunkov2023-09-191-0/+1
* io_uring: fix drain stalls by invalid SQEPavel Begunkov2023-09-191-0/+2
* io_uring: correct check for O_TMPFILEAleksa Sarai2023-08-161-2/+4
* io_uring: gate iowait schedule on having pending requestsJens Axboe2023-08-111-6/+17
* io_uring: treat -EAGAIN for REQ_F_NOWAIT as final for io-wqJens Axboe2023-08-031-0/+8
* io_uring: don't audit the capability check in io_uring_create()Ondrej Mosnacek2023-08-031-1/+1
* io_uring: add reschedule point to handle_tw_list()Jens Axboe2023-07-231-2/+5
* io_uring: Use io_schedule* in cqring waitAndres Freund2023-07-231-3/+11
* io_uring: wait interruptibly for request completions on exitJens Axboe2023-07-231-2/+18
* io_uring: ensure IOPOLL locks around deferred workJens Axboe2023-07-231-4/+21
* io_uring/net: disable partial retries for recvmsg with cmsgJens Axboe2023-06-281-1/+1
* io_uring/net: clear msg_controllen on partial sendmsg retryJens Axboe2023-06-281-0/+2
* io_uring/net: save msghdr->msg_control for retriesJens Axboe2023-06-281-1/+10
* io_uring: hold uring mutex around poll removalJens Axboe2023-06-211-0/+3
* io_uring: avoid null-ptr-deref in io_arm_poll_handlerFedor Pchelkin2023-03-221-2/+2
* io_uring/poll: allow some retries for poll triggering spuriouslyJens Axboe2023-03-101-2/+14
* io_uring: remove MSG_NOSIGNAL from recvmsgDavid Lamparter2023-03-101-1/+1
* io_uring/rsrc: disallow multi-source reg buffersPavel Begunkov2023-03-101-5/+8
* io_uring: add a conditional reschedule to the IOPOLL cancelation loopJens Axboe2023-03-101-0/+1
* io_uring: mark task TASK_RUNNING before handling resume/task workJens Axboe2023-03-101-1/+3
* io_uring: handle TIF_NOTIFY_RESUME when checking for task_workJens Axboe2023-03-101-0/+7
* io_uring: ensure that io_init_req() passes in the right issue_flagsJens Axboe2023-03-031-1/+2
* io_uring: add missing lock in io_get_file_fixedBing-Jhong Billy Jheng2023-03-031-9/+16
* io_uring/rw: remove leftover debug statementJens Axboe2023-01-241-2/+0
* io_uring/rw: ensure kiocb_end_write() is always calledJens Axboe2023-01-241-20/+37
* io_uring: fix double poll leak on repollingPavel Begunkov2023-01-241-2/+4
* io_uring: Clean up a false-positive warning from GCC 9.3.0Alviro Iskandar Setiawan2023-01-241-1/+1
* io_uring/net: fix fast_iov assignment in io_setup_async_msg()Stefan Metzmacher2023-01-241-2/+4
* io_uring: io_kiocb_update_pos() should not touch file for non -1 offsetJens Axboe2023-01-241-11/+10
* io_uring/rw: defer fsnotify calls to task contextJens Axboe2023-01-241-7/+15
* io_uring: do not recalculate ppos unnecessarilyDylan Yudaken2023-01-241-6/+12
* io_uring: update kiocb->ki_pos at execution timeDylan Yudaken2023-01-241-8/+18
* io_uring: remove duplicated calls to io_kiocb_pposDylan Yudaken2023-01-241-2/+5
* io_uring: ensure that cached task references are always put on exitJens Axboe2023-01-241-0/+4
* io_uring: fix async accept on O_NONBLOCK socketsDylan Yudaken2023-01-241-3/+2
* io_uring: allow re-poll if we made progressJens Axboe2023-01-241-2/+5
* io_uring: support MSG_WAITALL for IORING_OP_SEND(MSG)Jens Axboe2023-01-241-7/+29