aboutsummaryrefslogtreecommitdiffstats
path: root/io_uring
AgeCommit message (Expand)AuthorFilesLines
2024-02-23io_uring/net: fix multishot accept overflow handlingJens Axboe1-2/+3
2024-02-16io_uring/net: fix sr->len for IORING_OP_RECV with MSG_WAITALL and buffersJens Axboe1-0/+1
2024-01-25io_uring/rw: ensure io->bytes_done is always initializedJens Axboe1-3/+7
2024-01-10net: Declare MSG_SPLICE_PAGES internal sendmsg() flagDavid Howells1-0/+2
2023-12-13io_uring: fix mutex_unlock with unreferenced ctxPavel Begunkov1-6/+3
2023-12-13io_uring/af_unix: disable sending io_uring over socketsPavel Begunkov1-7/+0
2023-12-03io_uring: fix off-by one bvec indexKeith Busch1-1/+1
2023-12-03io_uring/fs: consider link->flags when getting path for LINKATCharles Mirabile1-1/+1
2023-11-20io_uring/net: ensure socket is marked connected on connect retryJens Axboe1-13/+11
2023-11-20io_uring/kbuf: Allow the full buffer id space for provided buffersGabriel Krisman Bertazi1-4/+7
2023-11-20io_uring/kbuf: Fix check of BID wrapping in provided buffersGabriel Krisman Bertazi1-1/+1
2023-11-08io_uring: kiocb_done() should *not* trust ->ki_pos if ->{read,write}_iter() f...Al Viro1-1/+1
2023-11-02io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pidJens Axboe1-6/+12
2023-10-06io_uring/fs: remove sqe->rw_flags checking from LINKATJens Axboe1-1/+1
2023-09-23io_uring/net: fix iter retargeting for selected bufPavel Begunkov1-0/+5
2023-09-19io_uring: Don't set affinity on a dying sqpoll threadPavel Begunkov1-1/+3
2023-09-19io_uring/sqpoll: fix io-wq affinity when IORING_SETUP_SQPOLL is usedPavel Begunkov5-14/+40
2023-09-19io_uring: break out of iowq iopoll on teardownPavel Begunkov3-0/+13
2023-09-19io_uring/net: don't overflow multishot acceptPavel Begunkov1-1/+1
2023-09-19io_uring: revert "io_uring fix multishot accept ordering"Pavel Begunkov1-4/+4
2023-09-19io_uring: always lock in io_apoll_task_funcPavel Begunkov1-1/+2
2023-09-13io_uring: break iopolling on signalPavel Begunkov1-0/+3
2023-09-13io_uring: fix drain stalls by invalid SQEPavel Begunkov1-0/+2
2023-09-02io_uring/parisc: Adjust pgoff in io_uring mmap() for pariscHelge Deller1-0/+46
2023-08-30io_uring/msg_ring: fix missing lock on overflow for IOPOLLJens Axboe1-5/+15
2023-08-30io_uring/msg_ring: move double lock/unlock helpers higher upJens Axboe1-24/+23
2023-08-30io_uring: extract a io_msg_install_complete helperPavel Begunkov1-17/+21
2023-08-30io_uring: get rid of double lockingPavel Begunkov3-36/+51
2023-08-16io_uring: correct check for O_TMPFILEAleksa Sarai1-2/+4
2023-08-11io_uring: annotate offset timeout racesPavel Begunkov1-1/+1
2023-08-11io_uring: gate iowait schedule on having pending requestsJens Axboe1-6/+17
2023-08-03io_uring: don't audit the capability check in io_uring_create()Ondrej Mosnacek1-1/+1
2023-07-27io_uring: treat -EAGAIN for REQ_F_NOWAIT as final for io-wqJens Axboe1-0/+8
2023-07-19io_uring: Use io_schedule* in cqring waitAndres Freund1-3/+12
2023-07-19io_uring: wait interruptibly for request completions on exitJens Axboe1-2/+18
2023-06-28io_uring/net: use the correct msghdr union member in io_sendmsg_copy_hdrJens Axboe1-2/+2
2023-06-28io_uring/poll: serialize poll linked timer start with poll removalJens Axboe1-5/+4
2023-06-28io_uring/net: disable partial retries for recvmsg with cmsgJens Axboe1-4/+7
2023-06-28io_uring/net: clear msg_controllen on partial sendmsg retryJens Axboe1-0/+2
2023-06-21io_uring/net: save msghdr->msg_control for retriesJens Axboe1-1/+7
2023-06-21io_uring: unlock sqd->lock before sq thread release CPUWenwen Chen1-1/+5
2023-06-09io_uring: undeprecate epoll_ctl supportBen Noordhuis1-4/+0
2023-05-11io_uring/rsrc: use nospec'ed indexesPavel Begunkov1-1/+1
2023-04-13io_uring: fix memory leak when removing provided buffersWojciech Lukowicz2-2/+5
2023-04-13io_uring: fix return value when removing provided buffersWojciech Lukowicz1-2/+0
2023-04-06io_uring: fix poll/netmsg alloc cachesPavel Begunkov1-0/+1
2023-04-06io_uring/rsrc: fix rogue rsrc node grabbingPavel Begunkov1-7/+5
2023-04-06io_uring/poll: clear single/double poll flags on poll armingJens Axboe1-0/+1
2023-04-06block/io_uring: pass in issue_flags for uring_cmd task_work handlingJens Axboe1-4/+6
2023-03-30io_uring/rsrc: fix null-ptr-deref in io_file_bitmap_get()Savino Dicanosa2-0/+4
2023-03-30io_uring/net: avoid sending -ECONNABORTED on repeated connection requestsJens Axboe1-9/+16
2023-03-22io_uring/msg_ring: let target know allocated indexPavel Begunkov1-1/+3
2023-03-17io_uring/uring_cmd: ensure that device supports IOPOLLJens Axboe1-1/+3
2023-03-11io_uring/poll: allow some retries for poll triggering spuriouslyJens Axboe2-2/+13
2023-03-11io_uring: fix two assignments in if conditionsXinghui Li2-9/+14
2023-03-11io_uring: fix size calculation when registering buf ringWojciech Lukowicz1-1/+1
2023-03-10io_uring: mark task TASK_RUNNING before handling resume/task workJens Axboe1-1/+3
2023-03-10io_uring: fix fget leak when fs don't support nowait buffered readJoseph Qi1-1/+1
2023-03-10io_uring: remove MSG_NOSIGNAL from recvmsgDavid Lamparter1-1/+1
2023-03-10io_uring/rsrc: disallow multi-source reg buffersPavel Begunkov1-5/+8
2023-03-10io_uring: add reschedule point to handle_tw_list()Jens Axboe1-1/+7
2023-03-10io_uring: add a conditional reschedule to the IOPOLL cancelation loopJens Axboe1-0/+1
2023-03-10io_uring: handle TIF_NOTIFY_RESUME when checking for task_workJens Axboe1-0/+8
2023-03-10io_uring: use user visible tail in io_uring_poll()Pavel Begunkov1-1/+1
2023-02-09use less confusing names for iov_iter direction initializersAl Viro2-12/+12
2023-02-01io_uring: always prep_async for drain requestsDylan Yudaken1-10/+8
2023-02-01io_uring: inline __io_req_complete_put()Pavel Begunkov1-13/+7
2023-02-01io_uring: remove io_req_tw_post_queuePavel Begunkov3-16/+10
2023-02-01io_uring: use io_req_task_complete() in timeoutPavel Begunkov1-2/+2
2023-02-01io_uring: hold locks for io_req_complete_failedPavel Begunkov1-1/+5
2023-02-01io_uring: inline __io_req_complete_post()Pavel Begunkov2-9/+3
2023-02-01io_uring: inline io_req_task_work_add()Pavel Begunkov2-7/+7
2023-02-01io_uring/net: cache provided buffer group value for multishot receivesJens Axboe1-0/+11
2023-02-01io_uring/msg_ring: fix remote queue to disabled ringPavel Begunkov1-0/+4
2023-01-24io_uring/poll: don't reissue in case of poll race on multishot requestJens Axboe1-1/+5
2023-01-18io_uring/io-wq: only free worker if it was allocated for creationJens Axboe1-1/+6
2023-01-18io_uring/io-wq: free worker if task_work creation is canceledJens Axboe1-0/+1
2023-01-18io_uring/poll: attempt request issue after racy poll wakeupJens Axboe1-11/+22
2023-01-18io_uring: lock overflowing for IOPOLLPavel Begunkov1-1/+5
2023-01-18io_uring/fdinfo: include locked hash table in fdinfo outputJens Axboe1-2/+10
2023-01-18io_uring/poll: add hash if ready poll request can't complete inlineJens Axboe1-5/+12
2023-01-12io_uring: fix CQ waiting timeout handlingPavel Begunkov1-3/+3
2023-01-12io_uring: pin context while queueing deferred twPavel Begunkov1-1/+7
2023-01-12io_uring: check for valid register opcode earlierJens Axboe1-2/+3
2023-01-12io_uring/cancel: re-grab ctx mutex after finishing waitJens Axboe1-5/+4
2023-01-04io_uring: pass in EPOLL_URING_WAKE for eventfd signaling and wakeupsJens Axboe3-6/+21
2022-12-31io_uring: remove iopoll spinlockPavel Begunkov1-3/+2
2022-12-31io_uring: protect cq_timeouts with timeout_lockPavel Begunkov1-1/+3
2022-12-31io_uring/net: fix cleanup after recyclePavel Begunkov1-1/+1
2022-12-31io_uring/net: ensure compat import handlers clear free_iovJens Axboe1-0/+1
2022-12-31io_uring: improve io_double_lock_ctx fail handlingPavel Begunkov1-0/+2
2022-12-31io_uring: dont remove file from msg_ring reqsPavel Begunkov4-5/+10
2022-12-31io_uring: add completion locking for iopollPavel Begunkov1-2/+3
2022-12-31io_uring/net: introduce IORING_SEND_ZC_REPORT_USAGE flagStefan Metzmacher3-1/+20
2022-12-07io_uring: Fix a null-ptr-deref in io_tctx_exit_cb()Harshit Mogalapalli1-1/+3
2022-11-25io_uring: clear TIF_NOTIFY_SIGNAL if set and task_work not availableJens Axboe1-2/+7
2022-11-25io_uring/poll: fix poll_refs race with cancelationLin Ma1-1/+2
2022-11-25io_uring/filetable: fix file reference underflowLin Ma1-2/+0
2022-11-25io_uring: make poll refs more robustPavel Begunkov1-1/+35
2022-11-25io_uring: cmpxchg for poll arm refs releasePavel Begunkov1-5/+3
2022-11-18io_uring: disallow self-propelled ring pollingPavel Begunkov1-0/+2
2022-11-17io_uring: fix multishot recv request leaksPavel Begunkov1-9/+7
2022-11-17io_uring: fix multishot accept request leaksPavel Begunkov3-8/+5
2022-11-17io_uring: fix tw losing poll eventsPavel Begunkov1-0/+7
2022-11-17io_uring: update res mask in io_poll_check_eventsPavel Begunkov1-0/+3
2022-11-11io_uring/poll: lockdep annote io_poll_req_insert_lockedPavel Begunkov1-0/+2
2022-11-11io_uring/poll: fix double poll req->flags racesPavel Begunkov1-12/+17
2022-11-10io_uring: check for rollover of buffer ID when providing buffersJens Axboe1-0/+2
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 Yudaken2-6/+15
2022-10-27io_uring: use io_run_local_work_locked helperDylan Yudaken1-2/+1
2022-10-22io_uring/net: fail zc sendmsg when unsupported by socketPavel Begunkov1-0/+2
2022-10-22io_uring/net: fail zc send when unsupported by socketPavel Begunkov1-0/+2
2022-10-20io-wq: Fix memory leak in worker creationRafael Mendonca1-1/+1
2022-10-19io_uring/msg_ring: Fix NULL pointer dereference in io_msg_send_fd()Harshit Mogalapalli1-0/+3
2022-10-16io_uring/rw: remove leftover debug statementJens Axboe1-2/+0
2022-10-16io_uring: don't iopoll from io_ring_ctx_wait_and_kill()Pavel Begunkov1-8/+5
2022-10-16io_uring: reuse io_alloc_req()Pavel Begunkov1-6/+2
2022-10-16io_uring: kill hot path fixed file bitmap debug checksPavel Begunkov2-1/+1
2022-10-16io_uring: remove FFS_SCMPavel Begunkov4-25/+3
2022-10-12io_uring/rw: ensure kiocb_end_write() is always calledJens Axboe1-9/+29
2022-10-12io_uring: fix fdinfo sqe offsets calculationPavel Begunkov1-1/+1
2022-10-12io_uring: local variable rw shadows outer variable in io_writeStefan Roesch1-4/+4
2022-10-12io_uring/opdef: remove 'audit_skip' from SENDMSG_ZCJens Axboe1-1/+0
2022-10-12io_uring: optimise locking for local tw with submit_waitPavel Begunkov2-2/+17
2022-10-12io_uring: remove redundant memory barrier in io_req_local_work_addPavel Begunkov2-4/+12
2022-10-12io_uring/net: handle -EINPROGRESS correct for IORING_OP_CONNECTJens Axboe1-6/+22
2022-10-12io_uring: remove notif leftoversPavel Begunkov1-1/+0
2022-10-12io_uring: correct pinned_vm accountingPavel Begunkov1-6/+4
2022-10-12io_uring/af_unix: defer registered files gc to io_uring releasePavel Begunkov1-0/+1
2022-10-07io_uring: limit registration w/ SINGLE_ISSUERPavel Begunkov1-0/+3
2022-10-07io_uring: remove io_register_submitterDylan Yudaken1-19/+3
2022-10-07io_uring: simplify __io_uring_add_tctx_nodeDylan Yudaken3-13/+25
2022-10-07Merge tag 'for-6.1/passthrough-2022-10-04' of git://git.kernel.dk/linuxLinus Torvalds1-1/+28
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 Torvalds15-304/+707
2022-10-06Merge tag 'pull-path' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsLinus Torvalds1-1/+1
2022-09-30Merge tag 'io_uring-6.0-2022-09-29' of git://git.kernel.dk/linuxLinus Torvalds2-1/+8
2022-09-30io_uring: introduce fixed buffer support for io_uring_cmdAnuj Gupta1-1/+18
2022-09-30io_uring: add io_uring_cmd_import_fixedAnuj Gupta1-0/+10
2022-09-30Merge branch 'for-6.1/io_uring' into for-6.1/passthroughJens Axboe15-304/+707
2022-09-30Merge branch 'for-6.1/block' into for-6.1/passthroughJens Axboe1-1/+1
2022-09-29io_uring/net: fix notif cqe reorderingPavel Begunkov1-5/+19
2022-09-29io_uring/net: don't update msg_name if not providedPavel Begunkov1-1/+2
2022-09-29io_uring: don't gate task_work run on TIF_NOTIFY_SIGNALJens Axboe1-4/+4
2022-09-29io_uring/rw: defer fsnotify calls to task contextJens Axboe1-9/+15
2022-09-29io_uring/net: fix fast_iov assignment in io_setup_async_msg()Stefan Metzmacher1-2/+4
2022-09-28io_uring/net: fix non-zc send with addressPavel Begunkov1-6/+6
2022-09-28io_uring/poll: disable level triggered pollJens Axboe1-1/+1
2022-09-28io_uring/net: don't skip notifs for failed requestsPavel Begunkov1-21/+8
2022-09-27block: replace blk_queue_nowait with bdev_nowaitChristoph Hellwig1-1/+1
2022-09-26io_uring/rw: don't lose short results on io_setup_async_rw()Pavel Begunkov1-3/+5
2022-09-26io_uring/rw: fix unexpected link breakagePavel Begunkov1-0/+1
2022-09-26io_uring: register single issuer task at creationDylan Yudaken1-0/+7
2022-09-26io_uring/net: fix cleanup double free free_iov initPavel Begunkov1-10/+10
2022-09-24Merge tag 'io_uring-6.0-2022-09-23' of git://git.kernel.dk/linuxLinus Torvalds1-0/+3
2022-09-23io_uring: ensure that cached task references are always put on exitJens Axboe1-0/+3
2022-09-23io_uring: fix CQE reorderingPavel Begunkov2-5/+19
2022-09-23io_uring/net: fix UAF in io_sendrecv_fail()Pavel Begunkov1-10/+5
2022-09-21io_uring: ensure local task_work marks task as runningJens Axboe1-0/+1
2022-09-21io_uring/net: zerocopy sendmsgPavel Begunkov3-5/+106
2022-09-21io_uring/net: combine fail handlersPavel Begunkov3-17/+17
2022-09-21io_uring/net: rename io_sendzc()Pavel Begunkov3-9/+9
2022-09-21io_uring/net: support non-zerocopy sendtoPavel Begunkov3-8/+35
2022-09-21io_uring/net: refactor io_setup_async_addrPavel Begunkov1-9/+9
2022-09-21io_uring/net: don't lose partial send_zc on failPavel Begunkov3-0/+18
2022-09-21io_uring/net: don't lose partial send/recv on failPavel Begunkov3-0/+16
2022-09-21io_uring/rw: don't lose partial IO result on failPavel Begunkov3-0/+15
2022-09-21io_uring: add custom opcode hooks on failPavel Begunkov2-0/+5
2022-09-21io_uring/fdinfo: fix sqe dumping for IORING_SETUP_SQE128Jens Axboe1-6/+26
2022-09-21io_uring/fdinfo: get rid of unnecessary is_cqe32 variableJens Axboe1-10/+6
2022-09-21io_uring: remove unused return from io_disarm_nextPavel Begunkov2-11/+4
2022-09-21io_uring: add fast path for io_run_local_work()Pavel Begunkov1-0/+3
2022-09-21io_uring/iopoll: unify tw breaking logicPavel Begunkov1-7/+7
2022-09-21io_uring/iopoll: fix unexpected returnsPavel Begunkov1-4/+1
2022-09-21io_uring: disallow defer-tw run w/ no submittersPavel Begunkov2-13/+3
2022-09-21io_uring: further limit non-owner defer-tw cq waitingPavel Begunkov2-0/+17
2022-09-21io_uring/net: use io_sr_msg for sendzcPavel Begunkov1-13/+5
2022-09-21io_uring/net: refactor io_sr_msg typesPavel Begunkov1-7/+7
2022-09-21io_uring/net: add non-bvec sg chunking callbackPavel Begunkov1-6/+11
2022-09-21io_uring/net: io_async_msghdr caches for sendzcPavel Begunkov1-5/+4
2022-09-21io_uring/net: use async caches for async prepPavel Begunkov2-3/+15
2022-09-21io_uring/net: reshuffle error handlingPavel Begunkov1-8/+8
2022-09-21io_uring: use io_cq_lock consistentlyPavel Begunkov1-1/+1
2022-09-21io_uring: kill an outdated commentPavel Begunkov1-4/+0
2022-09-21io_uring: allow buffer recycling in READVDylan Yudaken2-94/+52
2022-09-21fs: add batch and poll flags to the uring_cmd_iopoll() handlerJens Axboe1-1/+2
2022-09-21io_uring: ensure iopoll runs local task work as wellJens Axboe2-19/+26
2022-09-21io_uring: add local task_work run helper that is entered lockedJens Axboe2-7/+17
2022-09-21io_uring: cleanly separate request types for iopollJens Axboe1-6/+9
2022-09-21io_uring: add iopoll infrastructure for io_uring_cmdKanchan Joshi4-3/+23
2022-09-21io_uring: trace local task work runDylan Yudaken1-0/+3
2022-09-21io_uring: signal registered eventfd to process deferred task workDylan Yudaken1-23/+61
2022-09-21io_uring: move io_eventfd_putDylan Yudaken1-8/+8
2022-09-21io_uring: add IORING_SETUP_DEFER_TASKRUNDylan Yudaken4-21/+159
2022-09-21io_uring: do not run task work at the start of io_uring_enterDylan Yudaken1-2/+0
2022-09-21io_uring: introduce io_has_workDylan Yudaken1-4/+9
2022-09-21io_uring: remove unnecessary variableDylan Yudaken1-4/+1
2022-09-18Merge tag 'io_uring-6.0-2022-09-18' of git://git.kernel.dk/linuxLinus Torvalds2-9/+9
2022-09-18io_uring/opdef: rename SENDZC_NOTIF to SEND_ZCStefan Metzmacher1-1/+1