summaryrefslogtreecommitdiff
path: root/io_uring/net.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* io_uring/net: don't pick multiple buffers for non-bundle sendJens Axboe2024-08-071-2/+3
* io_uring/net: ensure expanded bundle send gets marked for cleanupJens Axboe2024-08-071-0/+1
* io_uring/net: ensure expanded bundle recv gets marked for cleanupJens Axboe2024-08-071-0/+1
* Merge tag 'net-next-6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/ne...Linus Torvalds2024-07-161-12/+4
|\
| * Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2024-07-041-4/+6
| |\
| * | io_uring/net: move charging socket out of zc io_uringPavel Begunkov2024-07-021-12/+4
* | | Merge tag 'for-6.11/io_uring-20240714' of git://git.kernel.dk/linuxLinus Torvalds2024-07-151-10/+84
|\ \ \ | |_|/ |/| |
| * | io_uring/net: check socket is valid in io_bind()/io_listen()Tetsuo Handa2024-07-131-2/+12
| * | io_uring/net: cleanup io_recv_finish() bundle handlingJens Axboe2024-07-021-10/+10
| * | io_uring: Introduce IORING_OP_LISTENGabriel Krisman Bertazi2024-06-191-0/+28
| * | io_uring: Introduce IORING_OP_BINDGabriel Krisman Bertazi2024-06-191-0/+36
| |/
* / io_uring/net: don't clear msg_inq before io_recv_buf_select() needs itJens Axboe2024-07-021-4/+6
|/
* io_uring/net: assign kmsg inq/flags before buffer selectionJens Axboe2024-05-301-3/+3
* io_uring/net: wire up IORING_CQE_F_SOCK_NONEMPTY for acceptJens Axboe2024-05-131-4/+16
* net: have do_accept() take a struct proto_accept_arg argumentJens Axboe2024-05-131-2/+4
* io_uring/net: add IORING_ACCEPT_POLL_FIRST flagJens Axboe2024-05-091-1/+8
* io_uring/net: add IORING_ACCEPT_DONTWAIT flagJens Axboe2024-05-091-6/+9
* io_uring: Require zeroed sqe->len on provided-buffers sendGabriel Krisman Bertazi2024-05-011-1/+3
* io_uring/net: fix sendzc lazy wake pollingPavel Begunkov2024-04-301-0/+1
* io_uring/net: support bundles for recvJens Axboe2024-04-221-21/+95
* io_uring/net: support bundles for sendJens Axboe2024-04-221-17/+128
* io_uring/net: add provided buffer support for IORING_OP_SENDJens Axboe2024-04-221-5/+20
* io_uring/net: add generic multishot retry helperJens Axboe2024-04-221-12/+12
* io_uring/net: set MSG_ZEROCOPY for sendzc in advancePavel Begunkov2024-04-151-3/+3
* io_uring/net: get rid of io_notif_complete_tw_extPavel Begunkov2024-04-151-5/+5
* io_uring/alloc_cache: switch to array based cachingJens Axboe2024-04-151-8/+5
* io_uring/net: move connect to always using async dataJens Axboe2024-04-151-30/+11
* io_uring/net: drop 'kmsg' parameter from io_req_msg_cleanup()Jens Axboe2024-04-151-6/+5
* io_uring/net: add iovec recyclingJens Axboe2024-04-151-47/+84
* io_uring/net: remove (now) dead code in io_netmsg_recycle()Jens Axboe2024-04-151-1/+1
* io_uring: kill io_msg_alloc_async_prep()Jens Axboe2024-04-151-21/+10
* io_uring/net: get rid of ->prep_async() for send sideJens Axboe2024-04-151-108/+46
* io_uring/net: get rid of ->prep_async() for receive sideJens Axboe2024-04-151-43/+28
* io_uring/net: always set kmsg->msg.msg_control_user before issueJens Axboe2024-04-151-2/+3
* io_uring/net: always setup an io_async_msghdrJens Axboe2024-04-151-70/+47
* io_uring/net: unify cleanup handlingJens Axboe2024-04-151-15/+11
* io_uring/net: switch io_recv() to using io_async_msghdrJens Axboe2024-04-151-28/+47
* io_uring/net: switch io_send() and io_send_zc() to using io_async_msghdrJens Axboe2024-04-151-94/+100
* io_uring: refactor io_fill_cqe_req_auxPavel Begunkov2024-04-151-4/+2
* io_uring/net: restore msg_control on sendzc retryPavel Begunkov2024-04-081-0/+1
* io_uring/net: ensure async prep handlers always initialize ->done_ioJens Axboe2024-03-161-1/+8
* Merge tag 'for-6.9/io_uring-20240310' of git://git.kernel.dk/linuxLinus Torvalds2024-03-111-177/+205
|\
| * io_uring/net: dedup io_recv_finish req completionPavel Begunkov2024-03-081-12/+4
| * io_uring: refactor DEFER_TASKRUN multishot checksPavel Begunkov2024-03-081-21/+0
| * io_uring: fix mshot io-wq checksPavel Begunkov2024-03-081-1/+1
| * io_uring/net: add io_req_msg_cleanup() helperJens Axboe2024-03-081-12/+15
| * io_uring/net: simplify msghd->msg_inq checkingJens Axboe2024-03-081-2/+2
| * io_uring/kbuf: rename REQ_F_PARTIAL_IO to REQ_F_BL_NO_RECYCLEJens Axboe2024-03-081-6/+6
| * io_uring/net: remove dependency on REQ_F_PARTIAL_IO for sr->done_ioJens Axboe2024-03-081-5/+7
| * io_uring/net: correctly handle multishot recvmsg retry setupJens Axboe2024-03-071-1/+2