public inbox for [email protected]
 help / color / mirror / Atom feed
* [PATCH v2 0/3] napi tracking strategy
@ 2024-09-16 19:19 Olivier Langlois
  2024-09-16 19:20 ` [PATCH v2 1/3] io_uring/napi: protect concurrent io_napi_entry timeout accesses Olivier Langlois
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Olivier Langlois @ 2024-09-16 19:19 UTC (permalink / raw)
  To: Jens Axboe, Pavel Begunkov, io-uring

the actual napi tracking strategy is inducing a non-negligeable overhead.
Everytime a multishot poll is triggered or any poll armed, if the napi is
enabled on the ring a lookup is performed to either add a new napi id into
the napi_list or its timeout value is updated.

For many scenarios, this is overkill as the napi id list will be pretty
much static most of the time. To address this common scenario, a new
abstraction has been created following the common Linux kernel idiom of
creating an abstract interface with a struct filled with function pointers.

the patch serie consist of very minor fixes followed by the core of the changes
to implement the new feature.

v2 changes:
- extract small changes from the core changes to ease minor fixes backport
- totally remove the io_napi_tracking_ops interface

Olivier Langlois (3):
  io_uring/napi: protect concurrent io_napi_entry timeout accesses
  io_uring/napi: fix io_napi_entry RCU accesses
  io_uring/napi: add static napi tracking strategy

 include/linux/io_uring_types.h |   2 +-
 include/uapi/linux/io_uring.h  |  32 +++++++-
 io_uring/fdinfo.c              |  36 +++++++++
 io_uring/napi.c                | 135 ++++++++++++++++++++++++++-------
 io_uring/napi.h                |  15 +++-
 5 files changed, 186 insertions(+), 34 deletions(-)

-- 
2.46.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-09-17 14:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-16 19:19 [PATCH v2 0/3] napi tracking strategy Olivier Langlois
2024-09-16 19:20 ` [PATCH v2 1/3] io_uring/napi: protect concurrent io_napi_entry timeout accesses Olivier Langlois
2024-09-16 19:20 ` [PATCH v2 2/3] io_uring/napi: fix io_napi_entry RCU accesses Olivier Langlois
2024-09-16 19:20 ` [PATCH v2 3/3] io_uring/napi: add static napi tracking strategy Olivier Langlois
2024-09-17  3:09   ` Jens Axboe
2024-09-17 14:58     ` Olivier Langlois

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox