public inbox for dev@dpdk.org
 help / color / mirror / Atom feed
From: Bruce Richardson <bruce.richardson@intel.com>
To: Anatoly Burakov <anatoly.burakov@intel.com>
Cc: <dev@dpdk.org>
Subject: Re: [PATCH v3 11/27] net/i40e: avoid rte malloc in MAC/VLAN filtering
Date: Mon, 16 Feb 2026 17:08:45 +0000	[thread overview]
Message-ID: <aZNPHVJYGlGfiOpT@bricha3-mobl1.ger.corp.intel.com> (raw)
In-Reply-To: <e0e9fe897b674db0e8da9884813b363fee3914bf.1770817884.git.anatoly.burakov@intel.com>

On Wed, Feb 11, 2026 at 01:52:53PM +0000, Anatoly Burakov wrote:
> Currently, when adding, removing, or configuring MAC and VLAN filters,
> we are using rte_zmalloc followed by an immediate rte_free. This is not
> needed as this memory is not being stored anywhere, so replace it with
> regular malloc/free.

A minor nit on a number of these patches and the commit logs. I suggest
expanding on the "not being stored anywhere" part to instead say that the
memory is a temporary scratchpad and so does not need to be in DPDK
hugepage memory.

For the code though:
Acked-by: Bruce Richardson <bruce.richardson@intel.com>


> 
> Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
> ---
>  drivers/net/intel/i40e/i40e_ethdev.c  | 38 +++++++++++++--------------
>  drivers/net/intel/i40e/rte_pmd_i40e.c | 16 +++++------
>  2 files changed, 26 insertions(+), 28 deletions(-)
> 
> diff --git a/drivers/net/intel/i40e/i40e_ethdev.c b/drivers/net/intel/i40e/i40e_ethdev.c
> index 654b0e5d16..806c29368c 100644
> --- a/drivers/net/intel/i40e/i40e_ethdev.c
> +++ b/drivers/net/intel/i40e/i40e_ethdev.c
> @@ -4165,8 +4165,7 @@ i40e_vlan_offload_set(struct rte_eth_dev *dev, int mask)
>  	if (mask & RTE_ETH_VLAN_EXTEND_MASK) {
>  		i = 0;
>  		num = vsi->mac_num;
> -		mac_filter = rte_zmalloc("mac_filter_info_data",
> -				 num * sizeof(*mac_filter), 0);
> +		mac_filter = calloc(num, sizeof(*mac_filter));
>  		if (mac_filter == NULL) {
>  			PMD_DRV_LOG(ERR, "failed to allocate memory");
>  			return I40E_ERR_NO_MEMORY;
> @@ -4206,7 +4205,7 @@ i40e_vlan_offload_set(struct rte_eth_dev *dev, int mask)
>  			if (ret)
>  				PMD_DRV_LOG(ERR, "i40e vsi add mac fail.");
>  		}
> -		rte_free(mac_filter);
> +		free(mac_filter);
>  	}
>  
>  	if (mask & RTE_ETH_QINQ_STRIP_MASK) {
> @@ -6231,8 +6230,7 @@ i40e_vsi_config_vlan_filter(struct i40e_vsi *vsi, bool on)
>  
>  	num = vsi->mac_num;
>  
> -	mac_filter = rte_zmalloc("mac_filter_info_data",
> -				 num * sizeof(*mac_filter), 0);
> +	mac_filter = calloc(num, sizeof(*mac_filter));
>  	if (mac_filter == NULL) {
>  		PMD_DRV_LOG(ERR, "failed to allocate memory");
>  		return I40E_ERR_NO_MEMORY;
> @@ -6264,7 +6262,7 @@ i40e_vsi_config_vlan_filter(struct i40e_vsi *vsi, bool on)
>  	}
>  
>  DONE:
> -	rte_free(mac_filter);
> +	free(mac_filter);
>  	return ret;
>  }
>  
> @@ -7154,7 +7152,7 @@ i40e_add_macvlan_filters(struct i40e_vsi *vsi,
>  	ele_num = hw->aq.asq_buf_size / sizeof(*req_list);
>  	ele_buff_size = hw->aq.asq_buf_size;
>  
> -	req_list = rte_zmalloc("macvlan_add", ele_buff_size, 0);
> +	req_list = calloc(1, ele_buff_size);
>  	if (req_list == NULL) {
>  		PMD_DRV_LOG(ERR, "Fail to allocate memory");
>  		return I40E_ERR_NO_MEMORY;
> @@ -7207,7 +7205,7 @@ i40e_add_macvlan_filters(struct i40e_vsi *vsi,
>  	} while (num < total);
>  
>  DONE:
> -	rte_free(req_list);
> +	free(req_list);
>  	return ret;
>  }
>  
> @@ -7230,7 +7228,7 @@ i40e_remove_macvlan_filters(struct i40e_vsi *vsi,
>  	ele_num = hw->aq.asq_buf_size / sizeof(*req_list);
>  	ele_buff_size = hw->aq.asq_buf_size;
>  
> -	req_list = rte_zmalloc("macvlan_remove", ele_buff_size, 0);
> +	req_list = calloc(1, ele_buff_size);
>  	if (req_list == NULL) {
>  		PMD_DRV_LOG(ERR, "Fail to allocate memory");
>  		return I40E_ERR_NO_MEMORY;
> @@ -7286,7 +7284,7 @@ i40e_remove_macvlan_filters(struct i40e_vsi *vsi,
>  	} while (num < total);
>  
>  DONE:
> -	rte_free(req_list);
> +	free(req_list);
>  	return ret;
>  }
>  
> @@ -7455,7 +7453,7 @@ i40e_vsi_remove_all_macvlan_filter(struct i40e_vsi *vsi)
>  	else
>  		num = vsi->mac_num * vsi->vlan_num;
>  
> -	mv_f = rte_zmalloc("macvlan_data", num * sizeof(*mv_f), 0);
> +	mv_f = calloc(num, sizeof(*mv_f));
>  	if (mv_f == NULL) {
>  		PMD_DRV_LOG(ERR, "failed to allocate memory");
>  		return I40E_ERR_NO_MEMORY;
> @@ -7484,7 +7482,7 @@ i40e_vsi_remove_all_macvlan_filter(struct i40e_vsi *vsi)
>  
>  	ret = i40e_remove_macvlan_filters(vsi, mv_f, num);
>  DONE:
> -	rte_free(mv_f);
> +	free(mv_f);
>  
>  	return ret;
>  }
> @@ -7510,7 +7508,7 @@ i40e_vsi_add_vlan(struct i40e_vsi *vsi, uint16_t vlan)
>  		return I40E_ERR_PARAM;
>  	}
>  
> -	mv_f = rte_zmalloc("macvlan_data", mac_num * sizeof(*mv_f), 0);
> +	mv_f = calloc(mac_num, sizeof(*mv_f));
>  
>  	if (mv_f == NULL) {
>  		PMD_DRV_LOG(ERR, "failed to allocate memory");
> @@ -7532,7 +7530,7 @@ i40e_vsi_add_vlan(struct i40e_vsi *vsi, uint16_t vlan)
>  	vsi->vlan_num++;
>  	ret = I40E_SUCCESS;
>  DONE:
> -	rte_free(mv_f);
> +	free(mv_f);
>  	return ret;
>  }
>  
> @@ -7561,7 +7559,7 @@ i40e_vsi_delete_vlan(struct i40e_vsi *vsi, uint16_t vlan)
>  		return I40E_ERR_PARAM;
>  	}
>  
> -	mv_f = rte_zmalloc("macvlan_data", mac_num * sizeof(*mv_f), 0);
> +	mv_f = calloc(mac_num, sizeof(*mv_f));
>  
>  	if (mv_f == NULL) {
>  		PMD_DRV_LOG(ERR, "failed to allocate memory");
> @@ -7594,7 +7592,7 @@ i40e_vsi_delete_vlan(struct i40e_vsi *vsi, uint16_t vlan)
>  	vsi->vlan_num--;
>  	ret = I40E_SUCCESS;
>  DONE:
> -	rte_free(mv_f);
> +	free(mv_f);
>  	return ret;
>  }
>  
> @@ -7626,7 +7624,7 @@ i40e_vsi_add_mac(struct i40e_vsi *vsi, struct i40e_mac_filter_info *mac_filter)
>  			mac_filter->filter_type == I40E_MAC_HASH_MATCH)
>  		vlan_num = 1;
>  
> -	mv_f = rte_zmalloc("macvlan_data", vlan_num * sizeof(*mv_f), 0);
> +	mv_f = calloc(vlan_num, sizeof(*mv_f));
>  	if (mv_f == NULL) {
>  		PMD_DRV_LOG(ERR, "failed to allocate memory");
>  		return I40E_ERR_NO_MEMORY;
> @@ -7665,7 +7663,7 @@ i40e_vsi_add_mac(struct i40e_vsi *vsi, struct i40e_mac_filter_info *mac_filter)
>  
>  	ret = I40E_SUCCESS;
>  DONE:
> -	rte_free(mv_f);
> +	free(mv_f);
>  
>  	return ret;
>  }
> @@ -7696,7 +7694,7 @@ i40e_vsi_delete_mac(struct i40e_vsi *vsi, struct rte_ether_addr *addr)
>  			filter_type == I40E_MAC_HASH_MATCH)
>  		vlan_num = 1;
>  
> -	mv_f = rte_zmalloc("macvlan_data", vlan_num * sizeof(*mv_f), 0);
> +	mv_f = calloc(vlan_num, sizeof(*mv_f));
>  	if (mv_f == NULL) {
>  		PMD_DRV_LOG(ERR, "failed to allocate memory");
>  		return I40E_ERR_NO_MEMORY;
> @@ -7725,7 +7723,7 @@ i40e_vsi_delete_mac(struct i40e_vsi *vsi, struct rte_ether_addr *addr)
>  
>  	ret = I40E_SUCCESS;
>  DONE:
> -	rte_free(mv_f);
> +	free(mv_f);
>  	return ret;
>  }
>  
> diff --git a/drivers/net/intel/i40e/rte_pmd_i40e.c b/drivers/net/intel/i40e/rte_pmd_i40e.c
> index a358f68bc5..fb73fa924f 100644
> --- a/drivers/net/intel/i40e/rte_pmd_i40e.c
> +++ b/drivers/net/intel/i40e/rte_pmd_i40e.c
> @@ -233,7 +233,7 @@ i40e_vsi_rm_mac_filter(struct i40e_vsi *vsi)
>  			   filter_type == I40E_MAC_HASH_MATCH)
>  			vlan_num = 1;
>  
> -		mv_f = rte_zmalloc("macvlan_data", vlan_num * sizeof(*mv_f), 0);
> +		mv_f = calloc(vlan_num, sizeof(*mv_f));
>  		if (!mv_f) {
>  			PMD_DRV_LOG(ERR, "failed to allocate memory");
>  			return I40E_ERR_NO_MEMORY;
> @@ -250,18 +250,18 @@ i40e_vsi_rm_mac_filter(struct i40e_vsi *vsi)
>  			ret = i40e_find_all_vlan_for_mac(vsi, mv_f, vlan_num,
>  							 &f->mac_info.mac_addr);
>  			if (ret != I40E_SUCCESS) {
> -				rte_free(mv_f);
> +				free(mv_f);
>  				return ret;
>  			}
>  		}
>  
>  		ret = i40e_remove_macvlan_filters(vsi, mv_f, vlan_num);
>  		if (ret != I40E_SUCCESS) {
> -			rte_free(mv_f);
> +			free(mv_f);
>  			return ret;
>  		}
>  
> -		rte_free(mv_f);
> +		free(mv_f);
>  		ret = I40E_SUCCESS;
>  	}
>  
> @@ -294,7 +294,7 @@ i40e_vsi_restore_mac_filter(struct i40e_vsi *vsi)
>  			   f->mac_info.filter_type == I40E_MAC_HASH_MATCH)
>  			vlan_num = 1;
>  
> -		mv_f = rte_zmalloc("macvlan_data", vlan_num * sizeof(*mv_f), 0);
> +		mv_f = calloc(vlan_num, sizeof(*mv_f));
>  		if (!mv_f) {
>  			PMD_DRV_LOG(ERR, "failed to allocate memory");
>  			return I40E_ERR_NO_MEMORY;
> @@ -312,18 +312,18 @@ i40e_vsi_restore_mac_filter(struct i40e_vsi *vsi)
>  			ret = i40e_find_all_vlan_for_mac(vsi, mv_f, vlan_num,
>  							 &f->mac_info.mac_addr);
>  			if (ret != I40E_SUCCESS) {
> -				rte_free(mv_f);
> +				free(mv_f);
>  				return ret;
>  			}
>  		}
>  
>  		ret = i40e_add_macvlan_filters(vsi, mv_f, vlan_num);
>  		if (ret != I40E_SUCCESS) {
> -			rte_free(mv_f);
> +			free(mv_f);
>  			return ret;
>  		}
>  
> -		rte_free(mv_f);
> +		free(mv_f);
>  		ret = I40E_SUCCESS;
>  	}
>  
> -- 
> 2.47.3
> 

  reply	other threads:[~2026-02-16 17:08 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 [this message]
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 ` [PATCH v6 " Anatoly Burakov
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=aZNPHVJYGlGfiOpT@bricha3-mobl1.ger.corp.intel.com \
    --to=bruce.richardson@intel.com \
    --cc=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