public inbox for dev@dpdk.org
 help / color / mirror / Atom feed
From: Anatoly Burakov <anatoly.burakov@intel.com>
To: dev@dpdk.org
Subject: [PATCH v6 00/27] Cleanups for ixgbe, i40e, iavf, and ice PMD's
Date: Thu, 19 Feb 2026 16:22:43 +0000	[thread overview]
Message-ID: <cover.1771518103.git.anatoly.burakov@intel.com> (raw)
In-Reply-To: <cover.1770646012.git.anatoly.burakov@intel.com>

This patchset is an assortment of cleanups for ixgbe, i40e, iavf, and ice PMD.

IXGBE:

- Remove unnecessary macros and #ifdef's
- Disentangle unrelated flow API code paths

I40E:

- Get rid of global variables and unnecessary allocations
- Reduce code duplication around default RSS keys
- Use more appropriate integer types and definitions

IAVF:

- Remove dead code
- Remove unnecessary allocations
- Separate RSS uninit from hash flow parser uninit

ICE:

- Remove unnecessary allocations

This is done in preparation for further rework.

Note that this patchset depends on driver bug fix patchset [1] (already integrated into next-net-intel).

[1] https://patches.dpdk.org/project/dpdk/list/?series=37350

v1 -> v2:
- Added more cleanups around rte_malloc usage

v2 -> v3:
- Reworded some commit messages
- Added a new patch for ICE
- Rebased on latest bug fix patches

v3 -> v4:
- Rebased on latest bugfix patchset

v4 -> v5:
- Adjusted typing for queue size
- Fixed missing zero initializations for stack allocations

v5 -> v6:
- Addressed feedback for v3, v4, and v5
- Changed more allocations to be stack based
- Reworked queue and IRQ map related i40e patches for better logic

Anatoly Burakov (27):
  net/ixgbe: remove MAC type check macros
  net/ixgbe: remove security-related ifdefery
  net/ixgbe: split security and ntuple filters
  net/i40e: get rid of global filter variables
  net/i40e: make default RSS key global
  net/i40e: use unsigned types for queue comparisons
  net/i40e: use proper flex len define
  net/i40e: remove global pattern variable
  net/i40e: avoid rte malloc in tunnel set
  net/i40e: avoid rte malloc in RSS RETA operations
  net/i40e: avoid rte malloc in MAC/VLAN filtering
  net/i40e: avoid rte malloc in VF resource queries
  net/i40e: avoid rte malloc in adminq operations
  net/i40e: avoid rte malloc in DDP package handling
  net/i40e: avoid rte malloc in DDP ptype handling
  net/iavf: remove remnants of pipeline mode
  net/iavf: decouple hash uninit from parser uninit
  net/iavf: avoid rte malloc in VF mailbox for IPsec
  net/iavf: avoid rte malloc in RSS configuration
  net/iavf: avoid rte malloc in MAC address operations
  net/iavf: avoid rte malloc in IPsec operations
  net/iavf: avoid rte malloc in queue operations
  net/iavf: avoid rte malloc in irq map config
  net/ice: avoid rte malloc in RSS RETA operations
  net/ice: avoid rte malloc in MAC address operations
  net/ice: avoid rte malloc in raw pattern parsing
  net/ice: avoid rte malloc in flow pattern match

 drivers/net/intel/i40e/i40e_ethdev.c         | 370 +++++++----------
 drivers/net/intel/i40e/i40e_ethdev.h         |  26 +-
 drivers/net/intel/i40e/i40e_flow.c           | 147 ++++---
 drivers/net/intel/i40e/i40e_hash.c           |  27 +-
 drivers/net/intel/i40e/i40e_hash.h           |   3 +
 drivers/net/intel/i40e/i40e_pf.c             |  26 +-
 drivers/net/intel/i40e/rte_pmd_i40e.c        |  60 +--
 drivers/net/intel/iavf/iavf.h                |   7 +-
 drivers/net/intel/iavf/iavf_ethdev.c         |  37 +-
 drivers/net/intel/iavf/iavf_fdir.c           |   1 -
 drivers/net/intel/iavf/iavf_fsub.c           |   1 -
 drivers/net/intel/iavf/iavf_generic_flow.h   |  15 -
 drivers/net/intel/iavf/iavf_hash.c           |  13 +-
 drivers/net/intel/iavf/iavf_ipsec_crypto.c   | 283 +++++--------
 drivers/net/intel/iavf/iavf_vchnl.c          | 412 ++++++++++---------
 drivers/net/intel/ice/ice_acl_filter.c       |   3 +-
 drivers/net/intel/ice/ice_dcf_ethdev.c       |  26 +-
 drivers/net/intel/ice/ice_ethdev.c           |  29 +-
 drivers/net/intel/ice/ice_fdir_filter.c      |  19 +-
 drivers/net/intel/ice/ice_generic_flow.c     |  15 +-
 drivers/net/intel/ice/ice_hash.c             |  13 +-
 drivers/net/intel/ice/ice_switch_filter.c    |   5 +-
 drivers/net/intel/ixgbe/ixgbe_ethdev.c       |   8 -
 drivers/net/intel/ixgbe/ixgbe_ethdev.h       |  16 -
 drivers/net/intel/ixgbe/ixgbe_flow.c         | 228 ++++++----
 drivers/net/intel/ixgbe/ixgbe_rxtx.c         |  26 --
 drivers/net/intel/ixgbe/ixgbe_rxtx.h         |   2 -
 drivers/net/intel/ixgbe/ixgbe_rxtx_vec_sse.c |   6 -
 28 files changed, 783 insertions(+), 1041 deletions(-)

-- 
2.47.3


  parent reply	other threads:[~2026-02-19 16:23 UTC|newest]

Thread overview: 297+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-09 14:13 [PATCH v1 00/12] Cleanups for ixgbe, i40e, and iavf PMD's Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 01/12] net/ixgbe: remove MAC type check macros Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 02/12] net/ixgbe: remove security-related ifdefery Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 03/12] net/ixgbe: split security and ntuple filters Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 04/12] net/i40e: get rid of global filter variables Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 05/12] net/i40e: use stack allocations for tunnel set Anatoly Burakov
2026-02-10 10:56   ` Burakov, Anatoly
2026-02-09 14:13 ` [PATCH v1 06/12] net/i40e: make default RSS key global Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 07/12] net/i40e: use unsigned types for queue comparisons Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 08/12] net/i40e: use proper flex len define Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 09/12] net/i40e: remove global pattern variable Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 10/12] net/iavf: remove remnants of pipeline mode Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 11/12] net/iavf: do not use malloc in crypto VF commands Anatoly Burakov
2026-02-09 14:13 ` [PATCH v1 12/12] net/iavf: decouple hash uninit from parser uninit Anatoly Burakov
2026-02-10 16:13 ` [PATCH v2 00/26] Cleanups for ixgbe, i40e, iavf, and ice PMD's Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 01/26] net/ixgbe: remove MAC type check macros Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 02/26] net/ixgbe: remove security-related ifdefery Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 03/26] net/ixgbe: split security and ntuple filters Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 04/26] net/i40e: get rid of global filter variables Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 05/26] net/i40e: make default RSS key global Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 06/26] net/i40e: use unsigned types for queue comparisons Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 07/26] net/i40e: use proper flex len define Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 08/26] net/i40e: remove global pattern variable Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 09/26] net/i40e: avoid rte malloc in tunnel set Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 10/26] net/i40e: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 11/26] net/i40e: avoid rte malloc in MAC/VLAN filtering Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 12/26] net/i40e: avoid rte malloc in VF resource queries Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 13/26] net/i40e: avoid rte malloc in adminq operations Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 14/26] net/i40e: avoid rte malloc in DDP package handling Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 15/26] net/i40e: avoid rte malloc in DDP ptype handling Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 16/26] net/iavf: remove remnants of pipeline mode Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 17/26] net/iavf: do not use malloc in crypto VF commands Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 18/26] net/iavf: decouple hash uninit from parser uninit Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 19/26] net/iavf: avoid rte malloc in RSS configuration Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 20/26] net/iavf: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 21/26] net/iavf: avoid rte malloc in IPsec operations Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 22/26] net/iavf: avoid rte malloc in queue operations Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 23/26] net/iavf: avoid rte malloc in irq map config Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 24/26] net/ice: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 25/26] net/ice: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-10 16:13   ` [PATCH v2 26/26] net/ice: avoid rte malloc in raw pattern parsing Anatoly Burakov
2026-02-11 13:52 ` [PATCH v3 00/27] Cleanups for ixgbe, i40e, iavf, and ice PMD's Anatoly Burakov
2026-02-11 13:52   ` [PATCH v3 01/27] net/ixgbe: remove MAC type check macros Anatoly Burakov
2026-02-11 17:54     ` Medvedkin, Vladimir
2026-02-11 13:52   ` [PATCH v3 02/27] net/ixgbe: remove security-related ifdefery Anatoly Burakov
2026-02-11 17:56     ` Medvedkin, Vladimir
2026-02-11 13:52   ` [PATCH v3 03/27] net/ixgbe: split security and ntuple filters Anatoly Burakov
2026-02-11 19:25     ` Medvedkin, Vladimir
2026-02-12  9:42       ` Burakov, Anatoly
2026-02-11 13:52   ` [PATCH v3 04/27] net/i40e: get rid of global filter variables Anatoly Burakov
2026-02-11 13:52   ` [PATCH v3 05/27] net/i40e: make default RSS key global Anatoly Burakov
2026-02-11 13:52   ` [PATCH v3 06/27] net/i40e: use unsigned types for queue comparisons Anatoly Burakov
2026-02-11 21:03     ` Morten Brørup
2026-02-13 10:30       ` Burakov, Anatoly
2026-02-11 13:52   ` [PATCH v3 07/27] net/i40e: use proper flex len define Anatoly Burakov
2026-02-11 13:52   ` [PATCH v3 08/27] net/i40e: remove global pattern variable Anatoly Burakov
2026-02-11 13:52   ` [PATCH v3 09/27] net/i40e: avoid rte malloc in tunnel set Anatoly Burakov
2026-02-11 13:52   ` [PATCH v3 10/27] net/i40e: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-16 17:06     ` Bruce Richardson
2026-02-17 12:32       ` Burakov, Anatoly
2026-02-17 12:46         ` Bruce Richardson
2026-02-17 14:38           ` Stephen Hemminger
2026-02-11 13:52   ` [PATCH v3 11/27] net/i40e: avoid rte malloc in MAC/VLAN filtering Anatoly Burakov
2026-02-16 17:08     ` Bruce Richardson
2026-02-11 13:52   ` [PATCH v3 12/27] net/i40e: avoid rte malloc in VF resource queries Anatoly Burakov
2026-02-16 17:09     ` Bruce Richardson
2026-02-11 13:52   ` [PATCH v3 13/27] net/i40e: avoid rte malloc in adminq operations Anatoly Burakov
2026-02-16 17:11     ` Bruce Richardson
2026-02-11 13:52   ` [PATCH v3 14/27] net/i40e: avoid rte malloc in DDP package handling Anatoly Burakov
2026-02-16 17:12     ` Bruce Richardson
2026-02-11 13:52   ` [PATCH v3 15/27] net/i40e: avoid rte malloc in DDP ptype handling Anatoly Burakov
2026-02-16 17:13     ` Bruce Richardson
2026-02-11 13:52   ` [PATCH v3 16/27] net/iavf: remove remnants of pipeline mode Anatoly Burakov
2026-02-11 13:52   ` [PATCH v3 17/27] net/iavf: avoid rte malloc in VF mailbox for IPsec Anatoly Burakov
2026-02-11 13:53   ` [PATCH v3 18/27] net/iavf: decouple hash uninit from parser uninit Anatoly Burakov
2026-02-11 13:53   ` [PATCH v3 19/27] net/iavf: avoid rte malloc in RSS configuration Anatoly Burakov
2026-02-11 13:53   ` [PATCH v3 20/27] net/iavf: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-11 13:53   ` [PATCH v3 21/27] net/iavf: avoid rte malloc in IPsec operations Anatoly Burakov
2026-02-11 13:53   ` [PATCH v3 22/27] net/iavf: avoid rte malloc in queue operations Anatoly Burakov
2026-02-11 13:53   ` [PATCH v3 23/27] net/iavf: avoid rte malloc in irq map config Anatoly Burakov
2026-02-11 13:53   ` [PATCH v3 24/27] net/ice: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-11 13:53   ` [PATCH v3 25/27] net/ice: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-11 13:53   ` [PATCH v3 26/27] net/ice: avoid rte malloc in raw pattern parsing Anatoly Burakov
2026-02-11 13:53   ` [PATCH v3 27/27] net/ice: avoid rte malloc in flow pattern match Anatoly Burakov
2026-02-13 10:26 ` [PATCH v4 00/27] Cleanups for ixgbe, i40e, iavf, and ice PMD's Anatoly Burakov
2026-02-13 10:26   ` [PATCH v4 01/27] net/ixgbe: remove MAC type check macros Anatoly Burakov
2026-02-13 10:44     ` Burakov, Anatoly
2026-02-16 16:58     ` Bruce Richardson
2026-02-17 12:50       ` Burakov, Anatoly
2026-02-17 12:58         ` Bruce Richardson
2026-02-17 14:23           ` Burakov, Anatoly
2026-02-17 15:32             ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 02/27] net/ixgbe: remove security-related ifdefery Anatoly Burakov
2026-02-13 10:44     ` Burakov, Anatoly
2026-02-13 10:26   ` [PATCH v4 03/27] net/ixgbe: split security and ntuple filters Anatoly Burakov
2026-02-13 10:26   ` [PATCH v4 04/27] net/i40e: get rid of global filter variables Anatoly Burakov
2026-02-13 10:26   ` [PATCH v4 05/27] net/i40e: make default RSS key global Anatoly Burakov
2026-02-13 10:26   ` [PATCH v4 06/27] net/i40e: use unsigned types for queue comparisons Anatoly Burakov
2026-02-13 10:26   ` [PATCH v4 07/27] net/i40e: use proper flex len define Anatoly Burakov
2026-02-13 10:26   ` [PATCH v4 08/27] net/i40e: remove global pattern variable Anatoly Burakov
2026-02-13 10:26   ` [PATCH v4 09/27] net/i40e: avoid rte malloc in tunnel set Anatoly Burakov
2026-02-13 10:26   ` [PATCH v4 10/27] net/i40e: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-13 10:26   ` [PATCH v4 11/27] net/i40e: avoid rte malloc in MAC/VLAN filtering Anatoly Burakov
2026-02-16 17:14     ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 12/27] net/i40e: avoid rte malloc in VF resource queries Anatoly Burakov
2026-02-16 17:14     ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 13/27] net/i40e: avoid rte malloc in adminq operations Anatoly Burakov
2026-02-16 17:15     ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 14/27] net/i40e: avoid rte malloc in DDP package handling Anatoly Burakov
2026-02-16 17:15     ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 15/27] net/i40e: avoid rte malloc in DDP ptype handling Anatoly Burakov
2026-02-16 17:15     ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 16/27] net/iavf: remove remnants of pipeline mode Anatoly Burakov
2026-02-16 17:16     ` Bruce Richardson
2026-02-17 12:51       ` Burakov, Anatoly
2026-02-17 13:00         ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 17/27] net/iavf: avoid rte malloc in VF mailbox for IPsec Anatoly Burakov
2026-02-16 17:19     ` Bruce Richardson
2026-02-16 22:25     ` Stephen Hemminger
2026-02-13 10:26   ` [PATCH v4 18/27] net/iavf: decouple hash uninit from parser uninit Anatoly Burakov
2026-02-16 17:23     ` Bruce Richardson
2026-02-18 10:32       ` Burakov, Anatoly
2026-02-13 10:26   ` [PATCH v4 19/27] net/iavf: avoid rte malloc in RSS configuration Anatoly Burakov
2026-02-16 17:24     ` Bruce Richardson
2026-02-18 10:45       ` Burakov, Anatoly
2026-02-13 10:26   ` [PATCH v4 20/27] net/iavf: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-16 17:27     ` Bruce Richardson
2026-02-19  9:22       ` Burakov, Anatoly
2026-02-19  9:29         ` Bruce Richardson
2026-02-19  9:32           ` Bruce Richardson
2026-02-19  9:39             ` Burakov, Anatoly
2026-02-19 13:21       ` Burakov, Anatoly
2026-02-13 10:26   ` [PATCH v4 21/27] net/iavf: avoid rte malloc in IPsec operations Anatoly Burakov
2026-02-16 17:30     ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 22/27] net/iavf: avoid rte malloc in queue operations Anatoly Burakov
2026-02-16 17:31     ` Bruce Richardson
2026-02-16 22:24     ` Stephen Hemminger
2026-02-13 10:26   ` [PATCH v4 23/27] net/iavf: avoid rte malloc in irq map config Anatoly Burakov
2026-02-16 17:31     ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 24/27] net/ice: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-16 17:32     ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 25/27] net/ice: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-16 17:33     ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 26/27] net/ice: avoid rte malloc in raw pattern parsing Anatoly Burakov
2026-02-16 17:34     ` Bruce Richardson
2026-02-13 10:26   ` [PATCH v4 27/27] net/ice: avoid rte malloc in flow pattern match Anatoly Burakov
2026-02-16 17:37     ` Bruce Richardson
2026-02-19 13:07       ` Burakov, Anatoly
2026-02-17 12:13 ` [PATCH v5 00/27] Cleanups for ixgbe, i40e, iavf, and ice PMD's Anatoly Burakov
2026-02-17 12:13   ` [PATCH v5 01/27] net/ixgbe: remove MAC type check macros Anatoly Burakov
2026-02-17 12:13   ` [PATCH v5 02/27] net/ixgbe: remove security-related ifdefery Anatoly Burakov
2026-02-17 12:13   ` [PATCH v5 03/27] net/ixgbe: split security and ntuple filters Anatoly Burakov
2026-02-17 16:59     ` Medvedkin, Vladimir
2026-02-17 12:13   ` [PATCH v5 04/27] net/i40e: get rid of global filter variables Anatoly Burakov
2026-02-17 16:59     ` Medvedkin, Vladimir
2026-02-17 12:13   ` [PATCH v5 05/27] net/i40e: make default RSS key global Anatoly Burakov
2026-02-17 17:06     ` Medvedkin, Vladimir
2026-02-17 12:13   ` [PATCH v5 06/27] net/i40e: use unsigned types for queue comparisons Anatoly Burakov
2026-02-17 17:09     ` Medvedkin, Vladimir
2026-02-17 12:13   ` [PATCH v5 07/27] net/i40e: use proper flex len define Anatoly Burakov
2026-02-17 17:10     ` Medvedkin, Vladimir
2026-02-17 12:13   ` [PATCH v5 08/27] net/i40e: remove global pattern variable Anatoly Burakov
2026-02-17 17:15     ` Medvedkin, Vladimir
2026-02-17 12:13   ` [PATCH v5 09/27] net/i40e: avoid rte malloc in tunnel set Anatoly Burakov
2026-02-17 17:24     ` Medvedkin, Vladimir
2026-02-17 12:13   ` [PATCH v5 10/27] net/i40e: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 11/27] net/i40e: avoid rte malloc in MAC/VLAN filtering Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 12/27] net/i40e: avoid rte malloc in VF resource queries Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 13/27] net/i40e: avoid rte malloc in adminq operations Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 14/27] net/i40e: avoid rte malloc in DDP package handling Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 15/27] net/i40e: avoid rte malloc in DDP ptype handling Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 16/27] net/iavf: remove remnants of pipeline mode Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 17/27] net/iavf: avoid rte malloc in VF mailbox for IPsec Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 18/27] net/iavf: decouple hash uninit from parser uninit Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 19/27] net/iavf: avoid rte malloc in RSS configuration Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 20/27] net/iavf: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 21/27] net/iavf: avoid rte malloc in IPsec operations Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 22/27] net/iavf: avoid rte malloc in queue operations Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 23/27] net/iavf: avoid rte malloc in irq map config Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 24/27] net/ice: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 25/27] net/ice: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 26/27] net/ice: avoid rte malloc in raw pattern parsing Anatoly Burakov
2026-02-17 12:14   ` [PATCH v5 27/27] net/ice: avoid rte malloc in flow pattern match Anatoly Burakov
2026-02-17 13:00   ` [PATCH v5 00/27] Cleanups for ixgbe, i40e, iavf, and ice PMD's Burakov, Anatoly
2026-02-19 16:22 ` Anatoly Burakov [this message]
2026-02-19 16:22   ` [PATCH v6 01/27] net/ixgbe: remove MAC type check macros Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 02/27] net/ixgbe: remove security-related ifdefery Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 03/27] net/ixgbe: split security and ntuple filters Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 04/27] net/i40e: get rid of global filter variables Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 05/27] net/i40e: make default RSS key global Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 06/27] net/i40e: use unsigned types for queue comparisons Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 07/27] net/i40e: use proper flex len define Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 08/27] net/i40e: remove global pattern variable Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 09/27] net/i40e: avoid rte malloc in tunnel set Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 10/27] net/i40e: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 11/27] net/i40e: avoid rte malloc in MAC/VLAN filtering Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 12/27] net/i40e: avoid rte malloc in VF resource queries Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 13/27] net/i40e: avoid rte malloc in adminq operations Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 14/27] net/i40e: avoid rte malloc in DDP package handling Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 15/27] net/i40e: avoid rte malloc in DDP ptype handling Anatoly Burakov
2026-02-19 16:22   ` [PATCH v6 16/27] net/iavf: remove remnants of pipeline mode Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 17/27] net/iavf: decouple hash uninit from parser uninit Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 18/27] net/iavf: avoid rte malloc in VF mailbox for IPsec Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 19/27] net/iavf: avoid rte malloc in RSS configuration Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 20/27] net/iavf: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 21/27] net/iavf: avoid rte malloc in IPsec operations Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 22/27] net/iavf: avoid rte malloc in queue operations Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 23/27] net/iavf: avoid rte malloc in irq map config Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 24/27] net/ice: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 25/27] net/ice: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 26/27] net/ice: avoid rte malloc in raw pattern parsing Anatoly Burakov
2026-02-19 16:23   ` [PATCH v6 27/27] net/ice: avoid rte malloc in flow pattern match Anatoly Burakov
2026-02-19 19:08   ` [PATCH v6 00/27] Cleanups for ixgbe, i40e, iavf, and ice PMD's Stephen Hemminger
2026-02-20  9:50     ` Burakov, Anatoly
2026-02-20 10:14 ` [PATCH v7 " Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 01/27] net/ixgbe: remove MAC type check macros Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 02/27] net/ixgbe: remove security-related ifdefery Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 03/27] net/ixgbe: split security and ntuple filters Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 04/27] net/i40e: get rid of global filter variables Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 05/27] net/i40e: make default RSS key global Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 06/27] net/i40e: use unsigned types for queue comparisons Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 07/27] net/i40e: use proper flex len define Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 08/27] net/i40e: remove global pattern variable Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 09/27] net/i40e: avoid rte malloc in tunnel set Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 10/27] net/i40e: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 11/27] net/i40e: avoid rte malloc in MAC/VLAN filtering Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 12/27] net/i40e: avoid rte malloc in VF resource queries Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 13/27] net/i40e: avoid rte malloc in adminq operations Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 14/27] net/i40e: avoid rte malloc in DDP package handling Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 15/27] net/i40e: avoid rte malloc in DDP ptype handling Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 16/27] net/iavf: remove remnants of pipeline mode Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 17/27] net/iavf: decouple hash uninit from parser uninit Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 18/27] net/iavf: avoid rte malloc in VF mailbox for IPsec Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 19/27] net/iavf: avoid rte malloc in RSS configuration Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 20/27] net/iavf: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 21/27] net/iavf: avoid rte malloc in IPsec operations Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 22/27] net/iavf: avoid rte malloc in queue operations Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 23/27] net/iavf: avoid rte malloc in irq map config Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 24/27] net/ice: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 25/27] net/ice: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 26/27] net/ice: avoid rte malloc in raw pattern parsing Anatoly Burakov
2026-02-20 10:14   ` [PATCH v7 27/27] net/ice: avoid rte malloc in flow pattern match Anatoly Burakov
2026-02-24 12:23 ` [PATCH v8 00/26] Cleanups for ixgbe, i40e, iavf, and ice PMD's Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 01/26] net/ixgbe: remove MAC type check macros Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 02/26] net/ixgbe: remove security-related ifdefery Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 03/26] net/ixgbe: split security and ntuple filters Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 04/26] net/i40e: get rid of global filter variables Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 05/26] net/i40e: make default RSS key global Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 06/26] net/i40e: use unsigned types for queue comparisons Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 07/26] net/i40e: use proper flex len define Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 08/26] net/i40e: remove global pattern variable Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 09/26] net/i40e: avoid rte malloc in tunnel set Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 10/26] net/i40e: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 11/26] net/i40e: avoid rte malloc in MAC/VLAN filtering Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 12/26] net/i40e: avoid rte malloc in VF resource queries Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 13/26] net/i40e: avoid rte malloc in adminq operations Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 14/26] net/i40e: avoid rte malloc in DDP package handling Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 15/26] net/i40e: avoid rte malloc in DDP ptype handling Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 16/26] net/iavf: remove remnants of pipeline mode Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 17/26] net/iavf: decouple hash uninit from parser uninit Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 18/26] net/iavf: avoid rte malloc in VF mailbox for IPsec Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 19/26] net/iavf: avoid rte malloc in RSS configuration Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 20/26] net/iavf: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 21/26] net/iavf: avoid rte malloc in queue operations Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 22/26] net/iavf: avoid rte malloc in irq map config Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 23/26] net/ice: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 24/26] net/ice: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 25/26] net/ice: avoid rte malloc in raw pattern parsing Anatoly Burakov
2026-02-24 12:23   ` [PATCH v8 26/26] net/ice: avoid rte malloc in flow pattern match Anatoly Burakov
2026-02-24 15:14 ` [PATCH v9 00/26] Cleanups for ixgbe, i40e, iavf, and ice PMD's Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 01/26] net/ixgbe: remove MAC type check macros Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 02/26] net/ixgbe: remove security-related ifdefery Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 03/26] net/ixgbe: split security and ntuple filters Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 04/26] net/i40e: get rid of global filter variables Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 05/26] net/i40e: make default RSS key global Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 06/26] net/i40e: use unsigned types for queue comparisons Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 07/26] net/i40e: use proper flex len define Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 08/26] net/i40e: remove global pattern variable Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 09/26] net/i40e: avoid rte malloc in tunnel set Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 10/26] net/i40e: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 11/26] net/i40e: avoid rte malloc in MAC/VLAN filtering Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 12/26] net/i40e: avoid rte malloc in VF resource queries Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 13/26] net/i40e: avoid rte malloc in adminq operations Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 14/26] net/i40e: avoid rte malloc in DDP package handling Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 15/26] net/i40e: avoid rte malloc in DDP ptype handling Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 16/26] net/iavf: remove remnants of pipeline mode Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 17/26] net/iavf: decouple hash uninit from parser uninit Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 18/26] net/iavf: avoid rte malloc in VF mailbox for IPsec Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 19/26] net/iavf: avoid rte malloc in RSS configuration Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 20/26] net/iavf: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 21/26] net/iavf: avoid rte malloc in queue operations Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 22/26] net/iavf: avoid rte malloc in irq map config Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 23/26] net/ice: avoid rte malloc in RSS RETA operations Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 24/26] net/ice: avoid rte malloc in MAC address operations Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 25/26] net/ice: avoid rte malloc in raw pattern parsing Anatoly Burakov
2026-02-24 15:14   ` [PATCH v9 26/26] net/ice: avoid rte malloc in flow pattern match Anatoly Burakov
2026-02-25 12:04   ` [PATCH v9 00/26] Cleanups for ixgbe, i40e, iavf, and ice PMD's 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=cover.1771518103.git.anatoly.burakov@intel.com \
    --to=anatoly.burakov@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