summaryrefslogtreecommitdiff
path: root/io_uring/io_uring.c
AgeCommit message (Expand)AuthorFilesLines
2022-12-13Merge tag 'for-6.2/io_uring-next-2022-12-08' of git://git.kernel.dk/linuxLinus Torvalds1-57/+110
2022-12-13Merge tag 'for-6.2/io_uring-2022-12-08' of git://git.kernel.dk/linuxLinus Torvalds1-91/+132
2022-12-07io_uring: skip spinlocking for ->task_completePavel Begunkov1-19/+52
2022-12-07io_uring: never run tw and fallback in parallelPavel Begunkov1-2/+10
2022-12-07io_uring: use tw for putting rsrcPavel Begunkov1-0/+1
2022-12-07io_uring: complete all requests in task contextPavel Begunkov1-3/+11
2022-12-07io_uring: don't check overflow flush failuresPavel Begunkov1-18/+6
2022-12-07io_uring: skip overflow CQE posting for dying ringPavel Begunkov1-14/+31
2022-12-07io_uring: dont remove file from msg_ring reqsPavel Begunkov1-1/+1
2022-12-07io_uring: Fix a null-ptr-deref in io_tctx_exit_cb()Harshit Mogalapalli1-1/+3
2022-11-30io_uring: don't raw spin unlock to match cq_lockPavel Begunkov1-1/+1
2022-11-30io_uring: kill io_poll_issue's PF_EXITING checkPavel Begunkov1-2/+0
2022-11-25io_uring: keep unlock_post inlined in hot pathPavel Begunkov1-2/+9
2022-11-25io_uring: spelling fixDylan Yudaken1-1/+1
2022-11-25io_uring: remove io_req_complete_post_twDylan Yudaken1-1/+1
2022-11-25io_uring: allow multishot polled reqs to defer completionDylan Yudaken1-1/+2
2022-11-25io_uring: remove overflow param from io_post_aux_cqeDylan Yudaken1-4/+8
2022-11-25io_uring: add lockdep assertion in io_fill_cqe_auxDylan Yudaken1-0/+2
2022-11-25io_uring: make io_fill_cqe_aux staticDylan Yudaken1-2/+2
2022-11-25io_uring: add io_aux_cqe which allows deferred completionDylan Yudaken1-0/+34
2022-11-25io_uring: allow defer completion for aux posted cqesDylan Yudaken1-3/+24
2022-11-25io_uring: defer all io_req_complete_failedDylan Yudaken1-9/+8
2022-11-23io_uring: iopoll protect complete_postPavel Begunkov1-6/+15
2022-11-23io_uring: inline __io_req_complete_put()Pavel Begunkov1-13/+7
2022-11-23io_uring: remove io_req_tw_post_queuePavel Begunkov1-12/+0
2022-11-23io_uring: hold locks for io_req_complete_failedPavel Begunkov1-1/+5
2022-11-22io_uring: kill io_cqring_ev_posted() and __io_cq_unlock_post()Jens Axboe1-13/+4
2022-11-22io_uring: pass in EPOLL_URING_WAKE for eventfd signaling and wakeupsJens Axboe1-2/+2
2022-11-21io_uring: inline __io_req_complete_post()Pavel Begunkov1-8/+3
2022-11-21io_uring: split tw fallback into a functionPavel Begunkov1-10/+15
2022-11-21io_uring: inline io_req_task_work_add()Pavel Begunkov1-6/+1
2022-11-21io_uring: update outdated comment of callbacksLin Ma1-1/+1
2022-11-21io_uring: do not always force run task_work in io_uring_registerDylan Yudaken1-2/+0
2022-11-21io_uring: move kbuf put out of generic tw completePavel Begunkov1-6/+0
2022-11-17io_uring: fix multishot accept request leaksPavel Begunkov1-1/+1
2022-11-08io_uring: calculate CQEs from the user visible valueDylan Yudaken1-2/+8
2022-10-27io_uring: unlock if __io_run_local_work locked insideDylan Yudaken1-4/+4
2022-10-27io_uring: use io_run_local_work_locked helperDylan Yudaken1-2/+1
2022-10-17io_uring: don't iopoll from io_ring_ctx_wait_and_kill()Pavel Begunkov1-8/+5
2022-10-17io_uring: reuse io_alloc_req()Pavel Begunkov1-6/+2
2022-10-17io_uring: kill hot path fixed file bitmap debug checksPavel Begunkov1-1/+0
2022-10-17io_uring: remove FFS_SCMPavel Begunkov1-2/+0
2022-10-13io_uring: optimise locking for local tw with submit_waitPavel Begunkov1-2/+10
2022-10-13io_uring: remove redundant memory barrier in io_req_local_work_addPavel Begunkov1-2/+3
2022-10-13io_uring: remove notif leftoversPavel Begunkov1-1/+0
2022-10-13io_uring: correct pinned_vm accountingPavel Begunkov1-6/+4
2022-10-07io_uring: limit registration w/ SINGLE_ISSUERPavel Begunkov1-0/+3
2022-10-07io_uring: simplify __io_uring_add_tctx_nodeDylan Yudaken1-1/+1
2022-10-07Merge tag 'for-6.1/block-2022-10-03' of git://git.kernel.dk/linuxLinus Torvalds1-1/+1
2022-10-07Merge tag 'for-6.1/io_uring-2022-10-03' of git://git.kernel.dk/linuxLinus Torvalds1-60/+244