aboutsummaryrefslogtreecommitdiffstats
path: root/io_uring (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-03-27io_uring/net: fix io_req_post_cqe abuse by send bundlePavel Begunkov2-2/+3
2025-03-26Merge tag 'net-next-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/ne...Linus Torvalds1-2/+2
2025-03-26Merge tag 'for-6.15/io_uring-20250322' of git://git.kernel.dk/linuxLinus Torvalds27-852/+971
2025-03-26io_uring/net: use REQ_F_IMPORT_BUFFER for send_zcCaleb Sander Mateos1-5/+5
2025-03-25Merge tag 'lsm-pr-20250323' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-7/+14
2025-03-25io_uring: move min_events sanitisationPavel Begunkov1-9/+7
2025-03-25io_uring: rename "min" arg in io_iopoll_check()Pavel Begunkov1-4/+4
2025-03-25io_uring: open code __io_post_aux_cqe()Pavel Begunkov1-12/+2
2025-03-25io_uring: defer iowq cqe overflow via task_workPavel Begunkov1-4/+7
2025-03-25io_uring: fix retry handling off iowqPavel Begunkov1-1/+1
2025-03-25Merge tag 'timers-cleanups-2025-03-23' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds2-8/+7
2025-03-22Merge tag 'io_uring-6.14-20250322' of git://git.kernel.dk/linuxLinus Torvalds1-0/+2
2025-03-22io_uring/net: fix sendzc double notif flushPavel Begunkov1-0/+2
2025-03-21io_uring/net: only import send_zc buffer onceCaleb Sander Mateos1-1/+4
2025-03-21io_uring/cmd: introduce io_uring_cmd_import_fixed_vecPavel Begunkov2-0/+25
2025-03-21io_uring/cmd: add iovec cache for commandsPavel Begunkov4-3/+28
2025-03-21Merge tag 'io_uring-6.14-20250321' of git://git.kernel.dk/linuxLinus Torvalds1-2/+1
2025-03-20io_uring: enable toggle of iowait usage when waiting on CQEsJens Axboe1-13/+19
2025-03-20io_uring/net: don't clear REQ_F_NEED_CLEANUP unconditionallyJens Axboe1-2/+1
2025-03-19io_uring/cmd: don't expose entire cmd async dataPavel Begunkov4-9/+19
2025-03-19io_uring: rename the data cmd cachePavel Begunkov2-4/+4
2025-03-13Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netPaolo Abeni1-4/+3
2025-03-10io_uring/kbuf: enable bundles for incrementally consumed buffersJens Axboe1-30/+26
2025-03-10Revert "io_uring/rsrc: simplify the bvec iter count calculation"Keith Busch1-1/+3
2025-03-10io_uring: rely on io_prep_reg_vec for iovec placementPavel Begunkov4-11/+7
2025-03-10io_uring: introduce io_prep_reg_iovec()Pavel Begunkov4-40/+32
2025-03-10io_uring: unify STOP_MULTISHOT with IOU_OKPavel Begunkov5-28/+9
2025-03-10io_uring: return -EAGAIN to continue multishotPavel Begunkov5-44/+29
2025-03-07Merge tag 'io_uring-6.14-20250306' of git://git.kernel.dk/linuxLinus Torvalds1-4/+3
2025-03-07io_uring: Remove unused declaration io_alloc_async_data()Yue Haibing1-1/+0
2025-03-07io_uring: cap cached iovec/bvec sizePavel Begunkov3-0/+8
2025-03-07io_uring/net: implement vectored reg bufs for zctxPavel Begunkov1-4/+55
2025-03-07io_uring/net: convert to struct iou_vecPavel Begunkov3-41/+25
2025-03-07io_uring/net: pull vec alloc out of msghdr importPavel Begunkov1-8/+15
2025-03-07io_uring/net: combine msghdr copyPavel Begunkov1-27/+19
2025-03-07io_uring/rw: defer reg buf vec importPavel Begunkov1-8/+34
2025-03-07io_uring/rw: implement vectored registered rwPavel Begunkov3-0/+92
2025-03-07io_uring: add infra for importing vectored reg buffersPavel Begunkov2-0/+133
2025-03-07io_uring: introduce struct iou_vecPavel Begunkov4-12/+34
2025-03-07Merge branch 'for-6.15/io_uring-epoll-wait' into for-6.15/io_uring-reg-vecJens Axboe4-6/+54
2025-03-07Merge branch 'for-6.15/io_uring-rx-zc' into for-6.15/io_uring-reg-vecJens Axboe13-1/+1173
2025-03-06Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+3
2025-03-05io_uring/rw: ensure reissue path is correctly handled for IOPOLLJens Axboe1-4/+3
2025-03-05io_uring: introduce io_cache_free() helperCaleb Sander Mateos4-15/+13
2025-03-04io_uring/rsrc: skip NULL file/buffer checks in io_free_rsrc_node()Caleb Sander Mateos1-4/+2
2025-03-04io_uring/rsrc: avoid NULL node check on io_sqe_buffer_register() failureCaleb Sander Mateos1-2/+1
2025-03-04io_uring/rsrc: call io_free_node() on io_sqe_buffer_register() failureCaleb Sander Mateos1-2/+1
2025-03-04io_uring/rsrc: free io_rsrc_node using kfree()Caleb Sander Mateos1-1/+1
2025-03-04io_uring/rsrc: split out io_free_node() helperCaleb Sander Mateos1-2/+7
2025-03-04io_uring/rsrc: include io_uring_types.h in rsrc.hCaleb Sander Mateos1-0/+1