summaryrefslogtreecommitdiff
path: root/fs/io_uring.c
AgeCommit message (Expand)AuthorFilesLines
2020-07-24io_uring: remove empty cleanup of OP_OPEN* reqsPavel Begunkov1-3/+0
2020-07-24io_uring: inline io_req_work_grab_env()Pavel Begunkov1-30/+20
2020-07-24io_uring: place cflags into completion dataPavel Begunkov1-5/+5
2020-07-24io_uring: remove sequence from io_kiocbPavel Begunkov1-14/+30
2020-07-24io_uring: use non-intrusive list for deferPavel Begunkov1-7/+18
2020-07-24io_uring: remove init for unused listPavel Begunkov1-1/+0
2020-07-24io_uring: add req->timeout.listPavel Begunkov1-10/+12
2020-07-24io_uring: use completion list for CQ overflowPavel Begunkov1-7/+8
2020-07-24io_uring: use inflight_entry list for iopoll'ingPavel Begunkov1-11/+15
2020-07-24io_uring: rename ctx->poll into ctx->iopollPavel Begunkov1-18/+18
2020-07-24io_uring: share completion list w/ per-op spacePavel Begunkov1-7/+20
2020-07-24io_uring: follow **iovec idiom in io_import_iovecPavel Begunkov1-6/+8
2020-07-24io_uring: add a helper for async rw iovec prepPavel Begunkov1-26/+20
2020-07-24io_uring: simplify io_req_map_rw()Pavel Begunkov1-7/+9
2020-07-24io_uring: replace rw->task_work with rq->task_workPavel Begunkov1-27/+4
2020-07-24io_uring: extract io_sendmsg_copy_hdr()Pavel Begunkov1-10/+11
2020-07-24io_uring: use more specific type in rcv/snd msg cpPavel Begunkov1-32/+31
2020-07-24io_uring: rename sr->msg into umsgPavel Begunkov1-9/+9
2020-07-24io_uring: fix sq array offset calculationDmitry Vyukov1-3/+3
2020-07-24Merge branch 'io_uring-5.8' into for-5.9/io_uringJens Axboe1-32/+74
2020-07-24io_uring: fix lockup in io_fail_links()Pavel Begunkov1-2/+1
2020-07-24io_uring: fix ->work corruption with poll_addPavel Begunkov1-0/+4
2020-07-23io_uring: missed req_init_async() for IOSQE_ASYNCPavel Begunkov1-0/+1
2020-07-18io_uring: always allow drain/link/hardlink/async sqe flagsDaniele Albano1-4/+9
2020-07-18io_uring: ensure double poll additions work with both request typesJens Axboe1-21/+26
2020-07-15io_uring: fix recvmsg memory leak with buffer selectionPavel Begunkov1-2/+8
2020-07-12io_uring: fix not initialised work->flagsPavel Begunkov1-1/+2
2020-07-12io_uring: fix missing msg_name assignmentPavel Begunkov1-0/+2
2020-07-10io_uring: account user memory freed when exit has been queuedJens Axboe1-3/+10
2020-07-10io_uring: fix memleak in io_sqe_files_register()Yang Yingliang1-0/+1
2020-07-10io_uring: remove dead 'ctx' argument and move forward declarationJens Axboe1-5/+4
2020-07-09io_uring: get rid of __req_need_defer()Jens Axboe1-10/+6
2020-07-09io_uring: fix memleak in __io_sqe_files_update()Yang Yingliang1-1/+3
2020-07-09io_uring: export cq overflow status to userspaceXiaoguang Wang1-2/+9
2020-07-09io_uring: only call kfree() for a non-zero pointerJens Axboe1-1/+2
2020-07-08io_uring: fix a use after free in io_async_task_func()Dan Carpenter1-1/+2
2020-07-07io_uring: don't burn CPU for iopoll on exitPavel Begunkov1-12/+11
2020-07-07io_uring: remove nr_events arg from iopoll_check()Pavel Begunkov1-7/+5
2020-07-07io_uring: partially inline io_iopoll_getevents()Pavel Begunkov1-3/+3
2020-07-06io_uring: briefly loose locks while reaping eventsPavel Begunkov1-1/+6
2020-07-06io_uring: fix stopping iopoll'ing too earlyPavel Begunkov1-7/+2
2020-07-06io_uring: don't delay iopoll'ed req completionPavel Begunkov1-0/+4
2020-07-06io_uring: fix lost cqe->flagsPavel Begunkov1-1/+2
2020-07-06io_uring: keep queue_sqe()'s fail path separatelyPavel Begunkov1-12/+11
2020-07-06io_uring: fix mis-refcounting linked timeoutsPavel Begunkov1-26/+7
2020-07-06io_uring: use new io_req_task_work_add() helper throughoutJens Axboe1-40/+37
2020-07-06io_uring: abstract out task work runningJens Axboe1-17/+19
2020-07-06Merge branch 'io_uring-5.8' into for-5.9/io_uringJens Axboe1-6/+37
2020-07-04io_uring: fix regression with always ignoring signals in io_cqring_wait()Jens Axboe1-7/+22
2020-06-30io_uring: use signal based task_work runningJens Axboe1-8/+24