From: Ciara Loftus <ciara.loftus@intel.com>
To: dev@dpdk.org
Cc: Ciara Loftus <ciara.loftus@intel.com>
Subject: [PATCH 0/4] Remove SSE from some Intel drivers
Date: Mon, 25 Aug 2025 12:35:44 +0000 [thread overview]
Message-ID: <20250825123548.1177090-1-ciara.loftus@intel.com> (raw)
This patch removes the SSE Rx and Tx paths from the i40e, iavf and ice
driverss. Each of these drivers have faster vector paths (AVX2 and AVX-512)
which have feature parity with the SSE paths. In environments where AVX2 or
AVX-512 are not supported, the scalar path will still be used, which also
has feature parity.
This series is intended for the next-net-intel tree.
Ciara Loftus (4):
net/i40e: remove SSE vector path
net/iavf: remove SSE vector path
net/ice: remove SSE vector path
doc: add release note entry for SSE removal
doc/guides/rel_notes/release_25_11.rst | 5 +
drivers/net/intel/i40e/i40e_rxtx.c | 57 +-
drivers/net/intel/i40e/i40e_rxtx_vec_avx2.c | 26 +
drivers/net/intel/i40e/i40e_rxtx_vec_sse.c | 723 ----------
drivers/net/intel/i40e/meson.build | 1 -
drivers/net/intel/iavf/iavf_rxtx.c | 46 +-
drivers/net/intel/iavf/iavf_rxtx.h | 2 -
drivers/net/intel/iavf/iavf_rxtx_vec_avx2.c | 27 +
drivers/net/intel/iavf/iavf_rxtx_vec_sse.c | 1395 -------------------
drivers/net/intel/iavf/meson.build | 1 -
drivers/net/intel/ice/ice_rxtx.c | 43 +-
drivers/net/intel/ice/ice_rxtx.h | 6 -
drivers/net/intel/ice/ice_rxtx_vec_avx2.c | 29 +
drivers/net/intel/ice/ice_rxtx_vec_sse.c | 743 ----------
drivers/net/intel/ice/meson.build | 1 -
15 files changed, 158 insertions(+), 2947 deletions(-)
delete mode 100644 drivers/net/intel/i40e/i40e_rxtx_vec_sse.c
delete mode 100644 drivers/net/intel/iavf/iavf_rxtx_vec_sse.c
delete mode 100644 drivers/net/intel/ice/ice_rxtx_vec_sse.c
--
2.34.1
next reply other threads:[~2025-08-25 12:35 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-25 12:35 Ciara Loftus [this message]
2025-08-25 12:35 ` [PATCH 1/4] net/i40e: remove SSE vector path Ciara Loftus
2025-08-25 12:35 ` [PATCH 2/4] net/iavf: " Ciara Loftus
2025-08-25 12:35 ` [PATCH 3/4] net/ice: " Ciara Loftus
2025-08-25 12:35 ` [PATCH 4/4] doc: add release note entry for SSE removal Ciara Loftus
2025-08-25 13:20 ` 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=20250825123548.1177090-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).