Skip to content
Snippets Groups Projects
Commit b4f20bb4 authored by Jens Axboe's avatar Jens Axboe
Browse files

io_uring: move finish_wait() outside of loop in cqring_wait()


We don't need to call this for every loop. This is particularly
troublesome if we are task_work intensive, and get woken more often than
we desire due to that.

Just do it at the end, that's always safe as we initialize the waitqueue
list head anyway. This can save a considerable amount of hammering on
the waitqueue lock, which is also hot from the request completion side.

Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 775a1f2f
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment