[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250509115126.63190-1-byungchul@sk.com>
Date: Fri, 9 May 2025 20:51:07 +0900
From: Byungchul Park <byungchul@...com>
To: willy@...radead.org,
netdev@...r.kernel.org
Cc: linux-kernel@...r.kernel.org,
linux-mm@...ck.org,
kernel_team@...ynix.com,
kuba@...nel.org,
almasrymina@...gle.com,
ilias.apalodimas@...aro.org,
harry.yoo@...cle.com,
hawk@...nel.org,
akpm@...ux-foundation.org,
ast@...nel.org,
daniel@...earbox.net,
davem@...emloft.net,
john.fastabend@...il.com,
andrew+netdev@...n.ch,
edumazet@...gle.com,
pabeni@...hat.com,
vishal.moola@...il.com
Subject: [RFC 00/19] Split netmem from struct page
The MM subsystem is trying to reduce struct page to a single pointer.
The first step towards that is splitting struct page by its individual
users, as has already been done with folio and slab. This patchset does
that for netmem which is used for page pools.
Matthew Wilcox tried and stopped the same work, you can see in:
https://lore.kernel.org/linux-mm/20230111042214.907030-1-willy@infradead.org/
Mina Almasry already has done a lot fo prerequisite works by luck, he
said :). I stacked my patches on the top of his work e.i. netmem.
I focused on removing the page pool members in struct page this time,
not moving the allocation code of page pool from net to mm. It can be
done later if needed.
There are still a lot of works to do, to remove the dependency on struct
page in the network subsystem. I will continue to work on this after
this base patchset is merged.
This patchset is based on mm tree's mm-unstable branch.
Byungchul Park (19):
netmem: rename struct net_iov to struct netmem_desc
netmem: introduce netmem alloc/put API to wrap page alloc/put API
page_pool: use netmem alloc/put API in __page_pool_alloc_page_order()
page_pool: rename __page_pool_alloc_page_order() to
__page_pool_alloc_large_netmem()
page_pool: use netmem alloc/put API in __page_pool_alloc_pages_slow()
page_pool: rename page_pool_return_page() to page_pool_return_netmem()
page_pool: use netmem alloc/put API in page_pool_return_netmem()
page_pool: rename __page_pool_release_page_dma() to
__page_pool_release_netmem_dma()
page_pool: rename __page_pool_put_page() to __page_pool_put_netmem()
page_pool: rename __page_pool_alloc_pages_slow() to
__page_pool_alloc_netmems_slow()
mlx4: use netmem descriptor and API for page pool
netmem: introduce page_pool_recycle_direct_netmem()
page_pool: expand scope of is_pp_{netmem,page}() to global
mm: page_alloc: do not directly access page->pp_magic but use
is_pp_page()
mlx5: use netmem descriptor and API for page pool
netmem: use _Generic to cover const casting for page_to_netmem()
netmem: remove __netmem_get_pp()
page_pool: make page_pool_get_dma_addr() just wrap
page_pool_get_dma_addr_netmem()
mm, netmem: remove the page pool members in struct page
drivers/net/ethernet/mellanox/mlx4/en_rx.c | 46 ++++----
drivers/net/ethernet/mellanox/mlx4/en_tx.c | 8 +-
drivers/net/ethernet/mellanox/mlx4/mlx4_en.h | 4 +-
drivers/net/ethernet/mellanox/mlx5/core/en.h | 4 +-
.../net/ethernet/mellanox/mlx5/core/en/xdp.c | 18 +--
.../net/ethernet/mellanox/mlx5/core/en/xdp.h | 2 +-
.../net/ethernet/mellanox/mlx5/core/en_main.c | 15 ++-
.../net/ethernet/mellanox/mlx5/core/en_rx.c | 66 +++++------
include/linux/mm_types.h | 13 +--
include/linux/skbuff.h | 18 ++-
include/net/netmem.h | 88 +++++----------
include/net/netmem_type.h | 22 ++++
include/net/page_pool/helpers.h | 17 ++-
include/net/page_pool/memory_provider.h | 6 +-
include/net/page_pool/types.h | 2 +
io_uring/zcrx.c | 42 +++----
mm/page_alloc.c | 5 +-
net/core/devmem.c | 14 +--
net/core/devmem.h | 24 ++--
net/core/page_pool.c | 106 ++++++++++--------
net/core/skbuff.c | 5 -
net/ipv4/tcp.c | 2 +-
22 files changed, 272 insertions(+), 255 deletions(-)
create mode 100644 include/net/netmem_type.h
base-commit: fd93b3350b4314eebd8fbf0fea3ca7fe48d777e3
--
2.17.1
Powered by blists - more mailing lists