summaryrefslogtreecommitdiffstats
path: root/fs/io_uring.c
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'akpm' (patches from Andrew)Linus Torvalds2019-06-291-3/+4
|\
| * signal: remove the wrong signal_pending() check in restore_user_sigmask()Oleg Nesterov2019-06-291-3/+4
* | io_uring: ensure req->file is cleared on allocationJens Axboe2019-06-211-3/+2
|/
* io_uring: fix memory leak of UNIX domain socket inodeEric Biggers2019-06-131-1/+3
* io_uring: Fix __io_uring_register() false successPavel Begunkov2019-05-261-1/+1
* Merge tag 'for-linus-20190516' of git://git.kernel.dk/linux-blockLinus Torvalds2019-05-161-57/+31
|\
| * io_uring: use wait_event_interruptible for cq_wait conditional waitJackie Liu2019-05-161-15/+2
| * io_uring: adjust smp_rmb inside io_cqring_eventsJackie Liu2019-05-161-4/+2
| * io_uring: fix infinite wait in khread_park() on io_finish_async()Roman Penyaev2019-05-161-7/+8
| * io_uring: remove 'ev_flags' argumentJens Axboe2019-05-151-14/+14
| * io_uring: fix failure to verify SQ_AFF cpuJens Axboe2019-05-141-2/+3
| * io_uring: fix race condition reading SQE dataStefan Bühler2019-05-131-15/+2
* | mm/gup: replace get_user_pages_longterm() with FOLL_LONGTERMIra Weiny2019-05-141-2/+3
|/
* io_uring: use cpu_online() to check p->sq_thread_cpu instead of cpu_possible()Shenghui Wang2019-05-071-1/+1
* io_uring: fix shadowed variable ret return code being not checkedColin Ian King2019-05-061-1/+0
* req->error only used for iopollStefan Bühler2019-05-021-2/+1
* io_uring: add support for eventfd notificationsJens Axboe2019-05-021-0/+48
* io_uring: add support for IORING_OP_SYNC_FILE_RANGEJens Axboe2019-05-021-0/+51
* io_uring: add support for marking commands as drainingJens Axboe2019-05-021-3/+88
* io_uring: avoid page allocation warningsMark Rutland2019-05-011-8/+9
* io_uring: drop req submit reference always in async puntJens Axboe2019-05-011-3/+4
* io_uring: free allocated io_memory onceMark Rutland2019-05-011-8/+7
* io_uring: fix SQPOLL cpu validationMark Rutland2019-05-011-7/+3
* io_uring: have submission side sqe errors post a cqeJens Axboe2019-05-011-28/+6
* io_uring: remove unnecessary barrier after unsetting IORING_SQ_NEED_WAKEUPStefan Bühler2019-04-301-2/+0
* io_uring: remove unnecessary barrier after incrementing dropped counterStefan Bühler2019-04-301-2/+0
* io_uring: remove unnecessary barrier before reading SQ tailStefan Bühler2019-04-301-2/+0
* io_uring: remove unnecessary barrier after updating SQ headStefan Bühler2019-04-301-6/+0
* io_uring: remove unnecessary barrier before reading cq headStefan Bühler2019-04-301-2/+5
* io_uring: remove unnecessary barrier before wq_has_sleeperStefan Bühler2019-04-301-7/+4
* io_uring: fix notes on barriersStefan Bühler2019-04-301-9/+110
* io_uring: fix handling SQEs requesting NOWAITStefan Bühler2019-04-301-7/+10
* io_uring: remove 'state' argument from io_{read,write} pathJens Axboe2019-04-231-13/+12
* io_uring: fix poll full SQ detectionStefan Bühler2019-04-221-1/+2
* io_uring: fix race condition when sq threads goes sleepingStefan Bühler2019-04-221-1/+2
* io_uring: fix race condition reading SQ entriesStefan Bühler2019-04-221-1/+2
* io_uring: fail io_uring_register(2) on a dying io_uring instanceJens Axboe2019-04-221-0/+8
* io_uring: fix CQ overflow conditionJens Axboe2019-04-171-1/+1
* io_uring: fix possible deadlock between io_uring_{enter,register}Jens Axboe2019-04-151-0/+12
* io_uring: drop io_file_put() 'file' argumentJens Axboe2019-04-131-6/+4
* io_uring: only test SQPOLL cpu after we've verified itJens Axboe2019-04-131-4/+8
* io_uring: park SQPOLL thread if it's percpuJens Axboe2019-04-131-0/+5
* io_uring: restrict IORING_SETUP_SQPOLL to rootJens Axboe2019-04-081-0/+4
* io_uring: fix double free in case of fileset regitration failureJens Axboe2019-04-031-0/+1
* io_uring: offload write to async worker in case of -EAGAINRoman Penyaev2019-03-251-1/+15
* io_uring: fix big-endian compat signal mask handlingArnd Bergmann2019-03-251-1/+9
* Merge tag 'io_uring-20190323' of git://git.kernel.dk/linux-blockLinus Torvalds2019-03-231-223/+216
|\
| * iov_iter: add ITER_BVEC_FLAG_NO_REF flagJens Axboe2019-03-181-0/+3
| * io_uring: retry bulk slab allocs as single allocsJens Axboe2019-03-181-5/+14
| * io_uring: fix poll racesJens Axboe2019-03-151-55/+56