io_uring: optimize local tw add ctx pinning
authorPavel Begunkov <asml.silence@gmail.com>
Thu, 6 Apr 2023 13:20:08 +0000 (14:20 +0100)
committerJens Axboe <axboe@kernel.dk>
Thu, 6 Apr 2023 22:23:10 +0000 (16:23 -0600)
commitd73a572df24661851465c821d33c03e70e4b68e5
treec6a218a8fefe4b8505a87989ed5f497ec57310f3
parentab1c590f5c9b96d8d8843d351aed72469f8f2ef0
io_uring: optimize local tw add ctx pinning

We currently pin the ctx for io_req_local_work_add() with
percpu_ref_get/put, which implies two rcu_read_lock/unlock pairs and some
extra overhead on top in the fast path. Replace it with a pure rcu read
and let io_ring_exit_work() synchronise against it.

Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/cbdfcb6b232627f30e9e50ef91f13c4f05910247.1680782017.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/io_uring.c