DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH 0/4] Remove SSE from some Intel drivers
@ 2025-08-25 12:35 Ciara Loftus
  2025-08-25 12:35 ` [PATCH 1/4] net/i40e: remove SSE vector path Ciara Loftus
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Ciara Loftus @ 2025-08-25 12:35 UTC (permalink / raw)
  To: dev; +Cc: Ciara Loftus

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


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

end of thread, other threads:[~2025-08-25 13:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-08-25 12:35 [PATCH 0/4] Remove SSE from some Intel drivers Ciara Loftus
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

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).