summaryrefslogtreecommitdiff
path: root/fs/io_uring.c
AgeCommit message (Expand)AuthorFilesLines
2020-05-17io_uring: remove dead check in io_splice()Jens Axboe1-4/+1
2020-05-17io_uring: add tee(2) supportPavel Begunkov1-3/+59
2020-05-17io_uring: don't repeat valid flag listPavel Begunkov1-3/+1
2020-05-17io_uring: rename io_file_put()Pavel Begunkov1-9/+13
2020-05-17io_uring: remove req->needs_fixed_filesPavel Begunkov1-9/+12
2020-05-17io_uring: cleanup io_poll_remove_one() logicJens Axboe1-14/+13
2020-05-17io_uring: fix FORCE_ASYNC req preparationPavel Begunkov1-3/+9
2020-05-17io_uring: don't prepare DRAIN reqs twicePavel Begunkov1-6/+7
2020-05-17io_uring: initialize ctx->sqo_wait earlierJens Axboe1-1/+1
2020-05-15io_uring: file registration list and lock optimizationJens Axboe1-14/+10
2020-05-15io_uring: add IORING_CQ_EVENTFD_DISABLED to the CQ ring flagsStefano Garzarella1-0/+2
2020-05-15io_uring: add 'cq_flags' field for the CQ ringStefano Garzarella1-1/+9
2020-05-15io_uring: allow POLL_ADD with double poll_wait() usersJens Axboe1-72/+146
2020-05-15io_uring: batch reap of dead file registrationsJens Axboe1-12/+42
2020-05-15io_uring: name sq thread and ref completionsJens Axboe1-16/+10
2020-05-13io_uring: polled fixed file must go through free iterationJens Axboe1-5/+1
2020-05-11io_uring: remove duplicate semicolon at the end of lineXiaoming Ni1-1/+1
2020-05-09io_uring: fix zero len do_splice()Pavel Begunkov1-4/+7
2020-05-09io_uring: remove obsolete 'state' parameterXiaoguang Wang1-2/+2
2020-05-09io_uring: remove 'fd is io_uring' from close pathJens Axboe1-6/+4
2020-05-07io_uring: don't use 'fd' for openat/openat2/statxJens Axboe1-25/+7
2020-05-05io_uring: handle -EFAULT properly in io_uring_setup()Xiaoguang Wang1-13/+11
2020-05-04io_uring: fix mismatched finish_wait() calls in io_uring_cancel_files()Xiaoguang Wang1-5/+4
2020-05-01io_uring: punt splice async because of inode mutexPavel Begunkov1-14/+2
2020-05-01io_uring: check non-sync defer_list carefullyPavel Begunkov1-1/+1
2020-05-01io_uring: fix extra put in sync_file_range()Pavel Begunkov1-1/+1
2020-05-01io_uring: use cond_resched() in io_ring_ctx_wait_and_kill()Xiaoguang Wang1-1/+1
2020-05-01io_uring: use proper references for fallback_req lockingBijan Mottahedeh1-2/+2
2020-05-01io_uring: only force async punt if poll based retry can't handle itJens Axboe1-2/+4
2020-05-01io_uring: enable poll retry for any file with ->read_iter / ->write_iterJens Axboe1-7/+13
2020-04-27io_uring: statx must grab the file table for valid fdJens Axboe1-2/+10
2020-04-19io_uring: only restore req->work for req that needs do completionXiaoguang Wang1-5/+5
2020-04-15io_uring: don't count rqs failed after current onePavel Begunkov1-3/+3
2020-04-15io_uring: kill already cached timeout.seq_offsetPavel Begunkov1-6/+3
2020-04-15io_uring: fix cached_sq_head in io_timeout()Pavel Begunkov1-7/+8
2020-04-14io_uring: only post events in io_poll_remove_all() if we completed someJens Axboe1-3/+4
2020-04-13io_uring: io_async_task_func() should check and honor cancelationJens Axboe1-0/+15
2020-04-13io_uring: check for need to re-wait in polled async handlingJens Axboe1-14/+29
2020-04-13io_uring: correct O_NONBLOCK check for splice puntJens Axboe1-1/+1
2020-04-12io_uring: restore req->work when canceling poll requestXiaoguang Wang1-0/+10
2020-04-12io_uring: move all request init code in one placePavel Begunkov1-52/+52
2020-04-12io_uring: keep all sqe->flags in req->flagsPavel Begunkov1-10/+13
2020-04-12io_uring: early submission req fail codePavel Begunkov1-31/+19
2020-04-12io_uring: track mm through current->mmPavel Begunkov1-21/+16
2020-04-12io_uring: remove obsolete @mm_faultPavel Begunkov1-3/+1
2020-04-10io_uring: punt final io_ring_ctx wait-and-free to workqueueJens Axboe1-2/+16
2020-04-09io_uring: fix fs cleanup on cqe overflowPavel Begunkov1-1/+1
2020-04-08io_uring: don't read user-shared sqe flags twicePavel Begunkov1-12/+8
2020-04-08io_uring: remove req init from io_get_req()Pavel Begunkov1-26/+27
2020-04-08io_uring: alloc req only after getting sqePavel Begunkov1-15/+9