Message ID | 20231122034420.1158898-5-kuba@kernel.org (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: page_pool: add netlink-based introspection | expand |
On Wed, Nov 22, 2023 at 4:44 AM Jakub Kicinski <kuba@kernel.org> wrote: > > To avoid any issues with race conditions on accessing napi > and having to think about the lifetime of NAPI objects > in netlink GET - stash the napi_id to which page pool > was linked at creation time. > > Signed-off-by: Jakub Kicinski <kuba@kernel.org> > --- Interesting... I have a patch to speedup dev_get_by_napi_id(), I will send it today. Reviewed-by: Eric Dumazet <edumazet@google.com>
On 11/22/23 04:44, Jakub Kicinski wrote: > To avoid any issues with race conditions on accessing napi > and having to think about the lifetime of NAPI objects > in netlink GET - stash the napi_id to which page pool > was linked at creation time. > > Signed-off-by: Jakub Kicinski<kuba@kernel.org> > --- > include/net/page_pool/types.h | 1 + > net/core/page_pool_user.c | 4 +++- > 2 files changed, 4 insertions(+), 1 deletion(-) Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
diff --git a/include/net/page_pool/types.h b/include/net/page_pool/types.h index b258a571201e..7e47d7bb2c1e 100644 --- a/include/net/page_pool/types.h +++ b/include/net/page_pool/types.h @@ -193,6 +193,7 @@ struct page_pool { /* User-facing fields, protected by page_pools_lock */ struct { struct hlist_node list; + u32 napi_id; u32 id; } user; }; diff --git a/net/core/page_pool_user.c b/net/core/page_pool_user.c index 1591dbd66d51..23074d4c75fc 100644 --- a/net/core/page_pool_user.c +++ b/net/core/page_pool_user.c @@ -37,9 +37,11 @@ int page_pool_list(struct page_pool *pool) if (err < 0) goto err_unlock; - if (pool->slow.netdev) + if (pool->slow.netdev) { hlist_add_head(&pool->user.list, &pool->slow.netdev->page_pools); + pool->user.napi_id = pool->p.napi ? pool->p.napi->napi_id : 0; + } mutex_unlock(&page_pools_lock); return 0;
To avoid any issues with race conditions on accessing napi and having to think about the lifetime of NAPI objects in netlink GET - stash the napi_id to which page pool was linked at creation time. Signed-off-by: Jakub Kicinski <kuba@kernel.org> --- include/net/page_pool/types.h | 1 + net/core/page_pool_user.c | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-)