aboutsummaryrefslogtreecommitdiffstats
path: root/io_uring/poll.c
AgeCommit message (Expand)AuthorFilesLines
2024-03-15io_uring: fix poll_remove stalled req completionPavel Begunkov1-2/+2
2024-03-07io_uring: fix io_queue_proc modifying req->flagsPavel Begunkov1-8/+11
2024-02-09io-uring: add napi busy poll supportStefan Roesch1-0/+2
2024-02-08io_uring/poll: improve readability of poll reference decrementingJens Axboe1-2/+2
2024-02-08io_uring: add io_file_can_poll() helperJens Axboe1-1/+1
2024-02-08io_uring/cancel: don't default to setting req->work.cancel_seqJens Axboe1-5/+1
2024-01-29io_uring/poll: add requeue return code from poll multishot handlingJens Axboe1-1/+8
2024-01-29io_uring/poll: move poll execution helpers higher upJens Axboe1-20/+20
2023-12-13io_uring/poll: don't enable lazy wake for POLLEXCLUSIVEJens Axboe1-3/+17
2023-10-19io_uring/poll: use IOU_F_TWQ_LAZY_WAKE for wakeupsJens Axboe1-1/+1
2023-08-11io_uring: never overflow io_aux_cqePavel Begunkov1-2/+2
2023-07-17io_uring/cancel: support opcode based lookup and cancelationJens Axboe1-1/+2
2023-07-17io_uring: use cancelation match helper for poll and timeout requestsJens Axboe1-8/+4
2023-07-17io_uring/poll: always set 'ctx' in io_cancel_dataJens Axboe1-1/+1
2023-06-26Merge tag 'for-6.5/io_uring-2023-06-23' of git://git.kernel.dk/linuxLinus Torvalds1-3/+3
2023-06-17io_uring/poll: serialize poll linked timer start with poll removalJens Axboe1-5/+4
2023-06-07io_uring: cleanup io_aux_cqe() APIJens Axboe1-2/+2
2023-06-02io_uring: avoid indirect function calls for the hottest task_workJens Axboe1-1/+1
2023-04-03io_uring: encapsulate task_work statePavel Begunkov1-16/+16
2023-03-28io_uring/poll: clear single/double poll flags on poll armingJens Axboe1-0/+1
2023-03-01io_uring/poll: don't pass in wake func to io_init_poll_iocb()Jens Axboe1-5/+7
2023-02-25io_uring/poll: allow some retries for poll triggering spuriouslyJens Axboe1-2/+12
2023-01-29io_uring: Rename struct io_op_defBreno Leitao1-1/+1
2023-01-20io_uring/poll: don't reissue in case of poll race on multishot requestJens Axboe1-1/+5
2023-01-12io_uring/poll: attempt request issue after racy poll wakeupJens Axboe1-11/+20
2023-01-09io_uring/poll: add hash if ready poll request can't complete inlineJens Axboe1-5/+12
2022-11-30io_uring: combine poll tw handlersPavel Begunkov1-33/+21
2022-11-30io_uring: improve poll warning handlingPavel Begunkov1-1/+1
2022-11-30io_uring: remove ctx variable in io_poll_check_eventsPavel Begunkov1-2/+1
2022-11-30io_uring: carve io_poll_check_events fast pathPavel Begunkov1-19/+22
2022-11-29Merge branch 'for-6.2/io_uring' into for-6.2/io_uring-nextJens Axboe1-14/+19
2022-11-25io_uring/poll: fix poll_refs race with cancelationLin Ma1-1/+2
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-25io_uring: add io_aux_cqe which allows deferred completionDylan Yudaken1-2/+2
2022-11-25io_uring: defer all io_req_complete_failedDylan Yudaken1-1/+1
2022-11-25io_uring: always lock in io_apoll_task_funcDylan Yudaken1-1/+2
2022-11-23io_uring: iopoll protect complete_postPavel Begunkov1-1/+1
2022-11-22Revert "io_uring: disallow self-propelled ring polling"Jens Axboe1-2/+0
2022-11-22io_uring: pass in EPOLL_URING_WAKE for eventfd signaling and wakeupsJens Axboe1-0/+8
2022-11-21io_uring/poll: remove outdated comments of cachingLin Ma1-6/+1
2022-11-21io_uring: fix two assignments in if conditionsXinghui Li1-2/+5
2022-11-18io_uring: disallow self-propelled ring pollingPavel Begunkov1-0/+2
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-09-28io_uring/poll: disable level triggered pollJens Axboe1-1/+1
2022-08-12io_uring: make io_kiocb_to_cmd() typesafeStefan Metzmacher1-8/+8
2022-07-24io_uring: add abstraction around apoll cacheJens Axboe1-13/+5
2022-07-24io_uring: move apoll cache to poll.cJens Axboe1-0/+12
2022-07-24io_uring: consolidate hash_locked io-wq handlingPavel Begunkov1-5/+7
2022-07-24io_uring: clear REQ_F_HASH_LOCKED on hash removalPavel Begunkov1-5/+2
2022-07-24io_uring: don't race double poll setting REQ_F_ASYNC_DATAPavel Begunkov1-3/+3
2022-07-24io_uring: don't miss setting REQ_F_DOUBLE_POLLPavel Begunkov1-8/+10
2022-07-24io_uring: fix multishot poll on overflowDylan Yudaken1-2/+4
2022-07-24io_uring: add allow_overflow to io_post_aux_cqeDylan Yudaken1-1/+1
2022-07-24io_uring: add IOU_STOP_MULTISHOT return codeDylan Yudaken1-2/+9
2022-07-24io_uring: clean up io_poll_check_events return valuesDylan Yudaken1-11/+16
2022-07-24io_uring: move POLLFREE handling to separate functionJens Axboe1-23/+27
2022-07-24io_uring: optimise submission side poll_refsPavel Begunkov1-21/+67
2022-07-24io_uring: refactor poll arm error handlingPavel Begunkov1-23/+21
2022-07-24io_uring: change arm poll return valuesPavel Begunkov1-2/+5
2022-07-24io_uring: add a helper for apoll allocPavel Begunkov1-16/+28
2022-07-24io_uring: remove events caching atavismsPavel Begunkov1-10/+8
2022-07-24io_uring: clean poll ->private flaggingPavel Begunkov1-3/+17
2022-07-24io_uring: add a warn_once for poll_findPavel Begunkov1-0/+5
2022-07-24io_uring: fix io_poll_remove_all clang warningsPavel Begunkov1-2/+5
2022-07-24io_uring: clean up tracing eventsPavel Begunkov1-3/+2
2022-07-24io_uring: kill extra io_uring_types.h includesPavel Begunkov1-1/+0
2022-07-24io_uring: don't expose io_fill_cqe_aux()Pavel Begunkov1-16/+8
2022-07-24io_uring: mutex locked poll hashingPavel Begunkov1-21/+96
2022-07-24io_uring: propagate locking state to poll cancelPavel Begunkov1-1/+2
2022-07-24io_uring: introduce a struct for hash tablePavel Begunkov1-18/+22
2022-07-24io_uring: pass hash table into poll_findPavel Begunkov1-6/+14
2022-07-24io_uring: use state completion infra for poll reqsPavel Begunkov1-6/+2
2022-07-24io_uring: pass poll_find lock backPavel Begunkov1-20/+26
2022-07-24io_uring: switch cancel_hash to use per entry spinlockHao Xu1-31/+49
2022-07-24io_uring: poll: remove unnecessary req->ref setHao Xu1-1/+0
2022-07-24io_uring: add support for level triggered pollJens Axboe1-5/+10
2022-07-24io_uring: split provided buffers handling into its own fileJens Axboe1-0/+1
2022-07-24io_uring: move poll handling into its own fileJens Axboe1-0/+760