From: Ciara Loftus <ciara.loftus@intel.com>
To: dev@dpdk.org
Cc: Ciara Loftus <ciara.loftus@intel.com>
Subject: [PATCH 00/13] net/intel: tx path selection simplification
Date: Tue, 9 Dec 2025 11:26:39 +0000 [thread overview]
Message-ID: <20251209112652.963981-1-ciara.loftus@intel.com> (raw)
This series aims to simplify the process of selecting a Tx burst
function for the Intel drivers i40e, iavf, ice, idpf and cpfl by:
1. enforcing the same tx burst function for both primary and secondary
processes.
2. using a common function for selecting the tx burst function based on
maximum SIMD width, function features (context descriptor, single queue, etc.)
and requested tx offloads.
Some fixes are made to errors in the documentation that became evident
while implementing the new selection infratructure in each driver.
Ciara Loftus (13):
net/intel: introduce infrastructure for Tx path selection
net/ice: use same Tx path across processes
net/ice: use common Tx path selection infrastructure
net/iavf: use same Tx path across processes
net/iavf: use common Tx path selection infrastructure
net/i40e: use same Tx path across processes
net/i40e: use common Tx path selection infrastructure
net/idpf: use common Tx path selection infrastructure
net/cpfl: use common Tx path selection infrastructure
docs: fix TSO and checksum offload feature status in ice doc
docs: fix TSO feature status in iavf driver documentation
docs: fix inline crypto feature status in iavf driver doc
docs: fix TSO feature status in i40e driver documentation
doc/guides/nics/features/i40e.ini | 2 +-
doc/guides/nics/features/iavf.ini | 4 +-
doc/guides/nics/features/ice.ini | 6 +-
drivers/net/intel/common/tx.h | 100 ++++++++
drivers/net/intel/cpfl/cpfl_rxtx.c | 114 +++------
drivers/net/intel/cpfl/cpfl_rxtx_vec_common.h | 10 -
drivers/net/intel/i40e/i40e_ethdev.h | 13 +-
drivers/net/intel/i40e/i40e_rxtx.c | 186 ++++++++------
drivers/net/intel/i40e/i40e_rxtx.h | 20 +-
.../net/intel/i40e/i40e_rxtx_vec_altivec.c | 6 -
drivers/net/intel/i40e/i40e_rxtx_vec_neon.c | 6 -
drivers/net/intel/i40e/i40e_rxtx_vec_sse.c | 6 -
drivers/net/intel/iavf/iavf.h | 2 -
drivers/net/intel/iavf/iavf_ethdev.c | 9 +-
drivers/net/intel/iavf/iavf_rxtx.c | 241 +++++++++---------
drivers/net/intel/iavf/iavf_rxtx.h | 46 ++--
drivers/net/intel/iavf/iavf_rxtx_vec_common.h | 39 +--
drivers/net/intel/ice/ice_ethdev.c | 1 +
drivers/net/intel/ice/ice_ethdev.h | 12 +-
drivers/net/intel/ice/ice_rxtx.c | 201 +++++++--------
drivers/net/intel/ice/ice_rxtx.h | 30 ++-
drivers/net/intel/ice/ice_rxtx_vec_common.h | 35 +--
drivers/net/intel/ice/ice_rxtx_vec_sse.c | 6 -
drivers/net/intel/idpf/idpf_common_device.h | 10 +
drivers/net/intel/idpf/idpf_common_rxtx.c | 49 ++++
drivers/net/intel/idpf/idpf_common_rxtx.h | 12 +
drivers/net/intel/idpf/idpf_rxtx.c | 112 +++-----
drivers/net/intel/idpf/idpf_rxtx_vec_common.h | 10 -
28 files changed, 664 insertions(+), 624 deletions(-)
--
2.43.0
next reply other threads:[~2025-12-09 11:27 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-09 11:26 Ciara Loftus [this message]
2025-12-09 11:26 ` [PATCH 01/13] net/intel: introduce infrastructure for Tx path selection Ciara Loftus
2025-12-11 10:25 ` Bruce Richardson
2025-12-09 11:26 ` [PATCH 02/13] net/ice: use same Tx path across processes Ciara Loftus
2025-12-11 11:39 ` Bruce Richardson
2025-12-09 11:26 ` [PATCH 03/13] net/ice: use common Tx path selection infrastructure Ciara Loftus
2025-12-11 11:56 ` Bruce Richardson
2025-12-11 12:02 ` Bruce Richardson
2025-12-09 11:26 ` [PATCH 04/13] net/iavf: use same Tx path across processes Ciara Loftus
2025-12-09 11:26 ` [PATCH 05/13] net/iavf: use common Tx path selection infrastructure Ciara Loftus
2025-12-09 11:26 ` [PATCH 06/13] net/i40e: use same Tx path across processes Ciara Loftus
2025-12-09 11:26 ` [PATCH 07/13] net/i40e: use common Tx path selection infrastructure Ciara Loftus
2025-12-09 11:26 ` [PATCH 08/13] net/idpf: " Ciara Loftus
2025-12-09 11:26 ` [PATCH 09/13] net/cpfl: " Ciara Loftus
2025-12-09 11:26 ` [PATCH 10/13] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus
2025-12-11 11:58 ` Bruce Richardson
2025-12-09 11:26 ` [PATCH 11/13] docs: fix TSO feature status in iavf driver documentation Ciara Loftus
2025-12-11 11:58 ` Bruce Richardson
2025-12-09 11:26 ` [PATCH 12/13] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus
2025-12-11 11:59 ` Bruce Richardson
2025-12-09 11:26 ` [PATCH 13/13] docs: fix TSO feature status in i40e driver documentation Ciara Loftus
2025-12-11 11:59 ` Bruce Richardson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251209112652.963981-1-ciara.loftus@intel.com \
--to=ciara.loftus@intel.com \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).