DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ciara Loftus <ciara.loftus@intel.com>
To: dev@dpdk.org
Cc: Ciara Loftus <ciara.loftus@intel.com>
Subject: [PATCH v2 0/5] Remove SSE Rx/Tx paths from some Intel drivers
Date: Wed, 17 Dec 2025 14:32:18 +0000	[thread overview]
Message-ID: <20251217143223.3208830-1-ciara.loftus@intel.com> (raw)
In-Reply-To: <20250825123548.1177090-1-ciara.loftus@intel.com>

This patch removes the SSE Rx and Tx paths from the i40e, iavf and ice
drivers. 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.

v2:
* Remove deprecation notice
* Provide more detailed explanation in the release notes.
* Usage of function type enum instead of pkt burst pointer in the
supported_ptypes_get functions (simplify the logic by removing #ifdefs)
* More renaming in iavf to remove all mentions of SSE
* Removal of IAVF_REL_MBUFS_AVX512_VEC enum value as it's not used

Ciara Loftus (5):
  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: remove deprecation notice of SSE in some Intel drivers

 doc/guides/rel_notes/deprecation.rst        |    8 -
 doc/guides/rel_notes/release_26_03.rst      |    7 +
 drivers/net/intel/i40e/i40e_ethdev.h        |    3 -
 drivers/net/intel/i40e/i40e_rxtx.c          |   72 +-
 drivers/net/intel/i40e/i40e_rxtx_vec_avx2.c |   20 +
 drivers/net/intel/i40e/i40e_rxtx_vec_sse.c  |  717 ----------
 drivers/net/intel/i40e/meson.build          |    1 -
 drivers/net/intel/iavf/iavf.h               |    6 +-
 drivers/net/intel/iavf/iavf_rxtx.c          |   65 +-
 drivers/net/intel/iavf/iavf_rxtx.h          |    9 +-
 drivers/net/intel/iavf/iavf_rxtx_vec_avx2.c |   33 +
 drivers/net/intel/iavf/iavf_rxtx_vec_sse.c  | 1395 -------------------
 drivers/net/intel/iavf/meson.build          |    1 -
 drivers/net/intel/ice/ice_ethdev.h          |    3 -
 drivers/net/intel/ice/ice_rxtx.c            |   74 +-
 drivers/net/intel/ice/ice_rxtx.h            |    6 -
 drivers/net/intel/ice/ice_rxtx_vec_avx2.c   |   23 +
 drivers/net/intel/ice/ice_rxtx_vec_sse.c    |  737 ----------
 drivers/net/intel/ice/meson.build           |    1 -
 19 files changed, 153 insertions(+), 3028 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.43.0


  parent reply	other threads:[~2025-12-17 14:32 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-25 12:35 [PATCH 0/4] Remove SSE " 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-26  7:31   ` Khadem Ullah
2025-08-26  7:54     ` Bruce Richardson
2025-08-26  9:29       ` Khadem Ullah
2025-08-26 10:50         ` Bruce Richardson
2025-08-26 11:54           ` Khadem Ullah
2025-08-26 12:05             ` Bruce Richardson
2025-08-26 12:38               ` Khadem Ullah
2025-08-26 12:02           ` Khadem Ullah
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
2025-12-11 12:25 ` [PATCH 0/4] Remove SSE from some Intel drivers Bruce Richardson
2025-12-17 14:32 ` Ciara Loftus [this message]
2025-12-17 14:32   ` [PATCH v2 1/5] net/i40e: remove SSE vector path Ciara Loftus
2025-12-17 14:32   ` [PATCH v2 2/5] net/iavf: " Ciara Loftus
2025-12-17 14:32   ` [PATCH v2 3/5] net/ice: " Ciara Loftus
2025-12-17 14:32   ` [PATCH v2 4/5] doc: add release note entry for SSE removal Ciara Loftus
2025-12-17 14:32   ` [PATCH v2 5/5] doc: remove deprecation notice of SSE in some Intel drivers Ciara Loftus

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