|
|
Log in / Subscribe / Register

net: netpoll: Improve SKB pool management

From:  Breno Leitao <leitao-AT-debian.org>
To:  "David S. Miller" <davem-AT-davemloft.net>, Eric Dumazet <edumazet-AT-google.com>, Jakub Kicinski <kuba-AT-kernel.org>, Paolo Abeni <pabeni-AT-redhat.com>, Simon Horman <horms-AT-kernel.org>
Subject:  [PATCH net-next v3 0/2] net: netpoll: Improve SKB pool management
Date:  Thu, 14 Nov 2024 03:00:10 -0800
Message-ID:  <20241114-skb_buffers_v2-v3-0-9be9f52a8b69@debian.org>
Cc:  netdev-AT-vger.kernel.org, linux-kernel-AT-vger.kernel.org, Breno Leitao <leitao-AT-debian.org>, max-AT-kutsevol.com, davej-AT-codemonkey.org.uk, vlad.wing-AT-gmail.com
Archive-link:  Article

The netpoll subsystem pre-allocates 32 SKBs in a pool for emergency use
during out-of-memory conditions. However, the current implementation has
several inefficiencies:

 * The SKB pool, once allocated, is never freed:
	 * Resources remain allocated even after netpoll users are removed
	 * Failed initialization can leave pool populated forever
 * The global pool design makes resource tracking difficult

This series addresses these issues through three patches:

Patch 1 ("net: netpoll: Individualize the skb pool"):
 - Replace global pool with per-user pools in netpoll struct

Patch 2 ("net: netpoll: flush skb pool during cleanup"):
- Properly free pool resources during netconsole cleanup

These changes improve resource management and make the code more
maintainable.  As a side benefit, the improved structure would allow
netpoll to be modularized if desired in the future.

What is coming next?

Once this patch is integrated, I am planning to have the SKBs being
refilled outside of hot (send) path, in a work thread.

Signed-off-by: Breno Leitao <leitao@debian.org>
---
Changelog:
v3:
 * Use the skb_queue_purge_reason() helper instead of dropping the skb
   pool manually. (Jakub)

v2:
 * Drop the very first patch from v1 ("net: netpoll: Defer skb_pool
   population until setup success") (Jakub)
 * Move skb_queue_head_init() to the first patch, where it belongs to
   (Jakub)
 * https://lore.kernel.org/all/20241107-skb_buffers_v2-v2-0-...

v1:
 * https://lore.kernel.org/all/20241025142025.3558051-1-leit...

- Link to v2: https://lore.kernel.org/r/20241107-skb_buffers_v2-v2-0-28...

---
Breno Leitao (2):
      net: netpoll: Individualize the skb pool
      net: netpoll: flush skb pool during cleanup

 include/linux/netpoll.h |  1 +
 net/core/netpoll.c      | 45 ++++++++++++++++++++++++++-------------------
 2 files changed, 27 insertions(+), 19 deletions(-)
---
base-commit: a71c69f51d1119db5f7812b35f16e8ef7786b3f2
change-id: 20241107-skb_buffers_v2-f3e626100eda

Best regards,
-- 
Breno Leitao <leitao@debian.org>




Copyright © 2024, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds