aboutsummaryrefslogtreecommitdiffstats
path: root/fs/io_uring.c (follow)
AgeCommit message (Expand)AuthorFilesLines
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
2019-12-10io_uring: add sockets to list of files that support non-blocking issueJens Axboe1-2/+4
2019-12-10io_uring: only hash regular files for async work executionJens Axboe1-1/+3
2019-12-10io_uring: run next sqe inline if possibleJens Axboe1-4/+11
2019-12-10io_uring: don't dynamically allocate poll dataJens Axboe1-16/+11
2019-12-10io_uring: deferred send/recvmsg should assign iovJens Axboe1-2/+2
2019-12-10io_uring: sqthread should grab ctx->uring_lock for submissionsJens Axboe1-5/+2
2019-12-10io_uring: allow unbreakable linksJens Axboe1-38/+46
2019-12-05io_uring: fix a typo in a commentLimingWu1-1/+1
2019-12-05io_uring: hook all linked requests via link_listPavel Begunkov1-22/+20
2019-12-05io_uring: fix error handling in io_queue_link_headPavel Begunkov1-5/+7
2019-12-04io_uring: use hash table for poll command lookupsJens Axboe1-43/+41
2019-12-04io_uring: ensure deferred timeouts copy necessary dataJens Axboe1-41/+42
2019-12-04io_uring: allow IO_SQE_* flags on IORING_OP_TIMEOUTJens Axboe1-3/+0
2019-12-03io_uring: handle connect -EINPROGRESS like -EAGAINJens Axboe1-1/+1
2019-12-03io_uring: remove parameter ctx of io_submit_state_startJackie Liu1-2/+2
2019-12-03io_uring: mark us with IORING_FEAT_SUBMIT_STABLEJens Axboe1-1/+2
2019-12-03io_uring: ensure async punted connect requests copy dataJens Axboe1-4/+47
2019-12-03io_uring: ensure async punted sendmsg/recvmsg requests copy dataJens Axboe1-17/+128
2019-12-02io_uring: ensure async punted read/write requests copy iovecJens Axboe1-62/+181
2019-12-02io_uring: add general async offload contextJens Axboe1-24/+32
2019-12-02io_uring: transform send/recvmsg() -ERESTARTSYS to -EINTRJens Axboe1-0/+2
2019-12-02io_uring: use current task creds instead of allocating a new oneJens Axboe1-2/+2
2019-12-01Merge tag 'for-linus-20191129' of git://git.kernel.dk/linux-blockLinus Torvalds1-6/+52