aboutsummaryrefslogtreecommitdiffstats
path: root/fs/io_uring.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2020-01-20io_uring: clamp to_submit in io_submit_sqes()Pavel Begunkov1-2/+2
2020-01-20io_uring: add support for IORING_SETUP_CLAMPJens Axboe1-3/+14
2020-01-20io_uring: extend batch freeing to cover more casesJens Axboe1-31/+69
2020-01-20io_uring: wrap multi-req freeing in struct req_batchJens Axboe1-34/+31
2020-01-20io_uring: batch getting pcpu referencesPavel Begunkov1-9/+17
2020-01-20io_uring: add IORING_OP_MADVISEJens Axboe1-0/+59
2020-01-20io_uring: add IORING_OP_FADVISEJens Axboe1-0/+53
2020-01-20io_uring: allow use of offset == -1 to mean file positionJens Axboe1-1/+10
2020-01-20io_uring: add non-vectored read/write commandsJens Axboe1-0/+23
2020-01-20io_uring: improve poll completion performanceJens Axboe1-20/+88
2020-01-20io_uring: split overflow state into SQ and CQ sideJens Axboe1-13/+27
2020-01-20io_uring: add lookup table for various opcode needsJens Axboe1-53/+155
2020-01-20io_uring: remove two unnecessary function declarationsJens Axboe1-2/+0
2020-01-20io_uring: move *queue_link_head() from common pathPavel Begunkov1-17/+15
2020-01-20io_uring: rename prev to headPavel Begunkov1-5/+5
2020-01-20io_uring: add IOSQE_ASYNCJens Axboe1-2/+14
2020-01-20io_uring: add support for IORING_OP_STATXJens Axboe1-1/+85
2020-01-20io_uring: avoid ring quiesce for fixed file set unregister and updateJens Axboe1-135/+350
2020-01-20io_uring: add support for IORING_OP_CLOSEJens Axboe1-0/+109
2020-01-20io-wq: add support for uncancellable workJens Axboe1-1/+4
2020-01-20io_uring: add support for IORING_OP_OPENATJens Axboe1-2/+93
2020-01-20io_uring: add support for fallocate()Jens Axboe1-0/+60
2020-01-20io_uring: fix compat for IORING_REGISTER_FILES_UPDATEEugene Syromiatnikov1-1/+3
2020-01-16io_uring: only allow submit from owning taskJens Axboe1-0/+6
2020-01-15io_uring: ensure workqueue offload grabs ring mutex for poll listJens Axboe1-0/+9
2020-01-15io_uring: clear req->result always before issuing a read/write requestBijan Mottahedeh1-0/+2
2020-01-14io_uring: be consistent in assigning next work from handlerJens Axboe1-24/+28
2020-01-13io_uring: don't setup async context for read/write fixedJens Axboe1-0/+3
2020-01-07io_uring: remove punt of short reads to async contextJens Axboe1-12/+0
2019-12-20io_uring: pass in 'sqe' to the prep handlersJens Axboe1-242/+251
2019-12-20io_uring: standardize the prep methodsJens Axboe1-65/+63
2019-12-20io_uring: read 'count' for IORING_OP_TIMEOUT in prep handlerJens Axboe1-3/+8
2019-12-20io_uring: move all prep state for IORING_OP_{SEND,RECV}_MGS to prep handlerJens Axboe1-31/+33
2019-12-20io_uring: move all prep state for IORING_OP_CONNECT to prep handlerJens Axboe1-18/+22
2019-12-20io_uring: add and use struct io_rw for read/writesJens Axboe1-46/+50
2019-12-20io_uring: use u64_to_user_ptr() consistentlyJens Axboe1-9/+7
2019-12-18io_uring: io_wq_submit_work() should not touch req->rwJens Axboe1-3/+8
2019-12-18io_uring: don't wait when under-submittingPavel Begunkov1-0/+4
2019-12-17io_uring: warn about unhandled opcodeJens Axboe1-2/+6
2019-12-17io_uring: read opcode and user_data from SQE exactly onceJens Axboe1-25/+20
2019-12-17io_uring: make IORING_OP_TIMEOUT_REMOVE deferrableJens Axboe1-10/+34
2019-12-17io_uring: make IORING_OP_CANCEL_ASYNC deferrableJens Axboe1-4/+28
2019-12-17io_uring: make IORING_POLL_ADD and IORING_POLL_REMOVE deferrableJens Axboe1-14/+54
2019-12-17io_uring: make HARDLINK imply LINKPavel Begunkov1-1/+1
2019-12-17io_uring: any deferred command must have stable sqe dataJens Axboe1-49/+172
2019-12-17io_uring: remove 'sqe' parameter to the OP helpers that take itJens Axboe1-36/+44
2019-12-17io_uring: fix pre-prepped issue with force_nonblock == trueJens Axboe1-77/+98
2019-12-15io_uring: fix sporadic -EFAULT from IORING_OP_RECVMSGJens Axboe1-14/+26
2019-12-15io_uring: fix stale comment and a few typosBrian Gianforcaro1-4/+4
2019-12-11io_uring: ensure we return -EINVAL on unknown opcodeJens Axboe1-7/+14