summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPavel Begunkov <asml.silence@gmail.com>2022-11-20 16:57:41 +0000
committerJens Axboe <axboe@kernel.dk>2022-11-25 06:54:16 -0700
commit2f3893437a4ebf2e892ca172e9e122841319d675 (patch)
tree4d8c735da6a276bfe9613a346b40947c158c747f /Makefile
parent7fdbc5f014c3f71bc44673a2d6c5bb2d12d45f25 (diff)
io_uring: cmpxchg for poll arm refs release
Replace atomically substracting the ownership reference at the end of arming a poll with a cmpxchg. We try to release ownership by setting 0 assuming that poll_refs didn't change while we were arming. If it did change, we keep the ownership and use it to queue a tw, which is fully capable to process all events and (even tolerates spurious wake ups). It's a bit more elegant as we reduce races b/w setting the cancellation flag and getting refs with this release, and with that we don't have to worry about any kinds of underflows. It's not the fastest path for polling. The performance difference b/w cmpxchg and atomic dec is usually negligible and it's not the fastest path. Cc: stable@vger.kernel.org Fixes: aa43477b04025 ("io_uring: poll rework") Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/0c95251624397ea6def568ff040cad2d7926fd51.1668963050.git.asml.silence@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'Makefile')
0 files changed, 0 insertions, 0 deletions