netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v6 00/10] xdp: a fistful of generic changes pt. I
@ 2024-12-03 17:37 Alexander Lobakin
  2024-12-03 17:37 ` [PATCH net-next v6 01/10] xsk: align &xdp_buff_xsk harder Alexander Lobakin
                   ` (10 more replies)
  0 siblings, 11 replies; 20+ messages in thread
From: Alexander Lobakin @ 2024-12-03 17:37 UTC (permalink / raw)
  To: Alexei Starovoitov, Daniel Borkmann, John Fastabend,
	Andrii Nakryiko
  Cc: Alexander Lobakin, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Toke Høiland-Jørgensen, Maciej Fijalkowski,
	Stanislav Fomichev, Magnus Karlsson,
	nex.sw.ncis.osdt.itp.upstreaming, bpf, netdev, linux-kernel

XDP for idpf is currently 6 chapters:
* convert Rx to libeth;
* convert Tx and stats to libeth;
* generic XDP and XSk code changes (you are here);
* generic XDP and XSk code additions;
* actual XDP for idpf via new libeth_xdp;
* XSk for idpf (via ^).

Part III does the following:
* improve &xdp_buff_xsk cacheline placement;
* does some cleanups with marking read-only bpf_prog and xdp_buff
  arguments const for some generic functions;
* allows attaching already registered XDP memory model to RxQ info;
* makes system percpu page_pools valid XDP memory models;
* starts using netmems in the XDP core code (1 function);
* allows mixing pages from several page_pools within one XDP frame;
* optimizes &xdp_frame layout and removes no-more-used field.

Bullets 4-6 are the most important ones. All of them are prereqs to
libeth_xdp.

Alexander Lobakin (9):
  xsk: align &xdp_buff_xsk harder
  bpf, xdp: constify some bpf_prog * function arguments
  xdp, xsk: constify read-only arguments of some static inline helpers
  xdp: allow attaching already registered memory model to xdp_rxq_info
  xsk: allow attaching XSk pool via xdp_rxq_info_reg_mem_model()
  netmem: add a couple of page helper wrappers
  page_pool: make page_pool_put_page_bulk() handle array of netmems
  page_pool: allow mixing PPs within one bulk
  xdp: get rid of xdp_frame::mem.id

Toke Høiland-Jørgensen (1):
  xdp: register system page pool as an XDP memory model

 include/net/page_pool/types.h                 |   6 +-
 include/linux/bpf.h                           |  12 +-
 include/linux/filter.h                        |   9 +-
 include/linux/netdevice.h                     |   7 +-
 include/linux/skbuff.h                        |   2 +-
 include/net/netmem.h                          |  78 +++++++++++-
 include/net/xdp.h                             |  93 ++++++++++----
 include/net/xdp_sock_drv.h                    |  11 +-
 include/net/xsk_buff_pool.h                   |   4 +-
 .../net/ethernet/freescale/dpaa/dpaa_eth.c    |   2 +-
 drivers/net/veth.c                            |   4 +-
 kernel/bpf/cpumap.c                           |   2 +-
 kernel/bpf/devmap.c                           |   8 +-
 net/bpf/test_run.c                            |   4 +-
 net/core/dev.c                                |  20 ++-
 net/core/filter.c                             |  41 +++---
 net/core/page_pool.c                          |  79 ++++++++----
 net/core/skbuff.c                             |   2 +-
 net/core/xdp.c                                | 118 +++++++++++-------
 19 files changed, 348 insertions(+), 154 deletions(-)

---
From v5[0]:
* split the overgrowth series into 2 parts: changes and additions
  (Jakub);
* 008: future-proof: make the touched function MP-agnostic to avoid
  double work in future;
* send to better fitting now bpf instead of netdev.

From v4[1]:
* 12: pick RB from Toke;
* 19: drop redundant ';'s (Jakub);
* 19: fix a couple context imbalance warnings by moving __acquires() /
  __releases() to the proper place (smatch);
* no functional changes.

From v3[2]:
* rebase on top of the latest net-next to solve conflict (Jakub);
* 09: use iterative approach instead of recursive to not blow the stack
  (Toke);
* 12: rephrase the commitmsg since the functionality changed, so that
  it's not actual anymore (Toke);
* align &xdp_buff_xsk a bit harder since its alignment degraded
  recently;
* pick RBs from Toke.

From v2[3]:
* cover: rename the series;
* collect RBs and Acks from Maciej;
* 007: reword the commitmsg;
* 011: fix typos in the commitmsg (M);
* 012: 'ts' -> 'tsize' (M; not 'truesize' to fit into 80 cols =\);
* 016: fix the intro sentence (M);
* no functional changes.

From v1[4]:
* rebase on top of the latest net-next;
* no other changes.

[0] https://lore.kernel.org/netdev/20241113152442.4000468-1-aleksander.lobakin@intel.com
[1] https://lore.kernel.org/netdev/20241107161026.2903044-1-aleksander.lobakin@intel.com
[2] https://lore.kernel.org/netdev/20241030165201.442301-1-aleksander.lobakin@intel.com
[3] https://lore.kernel.org/netdev/20241015145350.4077765-1-aleksander.lobakin@intel.com
[4] https://lore.kernel.org/netdev/20241009152756.3113697-1-aleksander.lobakin@intel.com
-- 
2.47.0


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

end of thread, other threads:[~2024-12-06 16:21 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-03 17:37 [PATCH net-next v6 00/10] xdp: a fistful of generic changes pt. I Alexander Lobakin
2024-12-03 17:37 ` [PATCH net-next v6 01/10] xsk: align &xdp_buff_xsk harder Alexander Lobakin
2024-12-04 10:27   ` Toke Høiland-Jørgensen
2024-12-03 17:37 ` [PATCH net-next v6 02/10] bpf, xdp: constify some bpf_prog * function arguments Alexander Lobakin
2024-12-03 17:37 ` [PATCH net-next v6 03/10] xdp, xsk: constify read-only arguments of some static inline helpers Alexander Lobakin
2024-12-03 17:37 ` [PATCH net-next v6 04/10] xdp: allow attaching already registered memory model to xdp_rxq_info Alexander Lobakin
2024-12-03 17:37 ` [PATCH net-next v6 05/10] xsk: allow attaching XSk pool via xdp_rxq_info_reg_mem_model() Alexander Lobakin
2024-12-03 17:37 ` [PATCH net-next v6 06/10] xdp: register system page pool as an XDP memory model Alexander Lobakin
2024-12-03 17:37 ` [PATCH net-next v6 07/10] netmem: add a couple of page helper wrappers Alexander Lobakin
2024-12-04 10:49   ` Toke Høiland-Jørgensen
2024-12-06  4:03   ` Mina Almasry
2024-12-03 17:37 ` [PATCH net-next v6 08/10] page_pool: make page_pool_put_page_bulk() handle array of netmems Alexander Lobakin
2024-12-04 10:50   ` Toke Høiland-Jørgensen
2024-12-06  4:07   ` Mina Almasry
2024-12-03 17:37 ` [PATCH net-next v6 09/10] page_pool: allow mixing PPs within one bulk Alexander Lobakin
2024-12-06  2:40   ` Jakub Kicinski
2024-12-06 13:49     ` Alexander Lobakin
2024-12-06 16:20       ` Jakub Kicinski
2024-12-03 17:37 ` [PATCH net-next v6 10/10] xdp: get rid of xdp_frame::mem.id Alexander Lobakin
2024-12-06  7:10 ` [PATCH net-next v6 00/10] xdp: a fistful of generic changes pt. I patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).