From: Anatoly Burakov <anatoly.burakov@intel.com>
To: dev@dpdk.org, Vladimir Medvedkin <vladimir.medvedkin@intel.com>
Subject: [PATCH v6 23/27] net/iavf: avoid rte malloc in irq map config
Date: Thu, 19 Feb 2026 16:23:06 +0000 [thread overview]
Message-ID: <bbbfd1451069c582d7f664ba47b031be2df0bf22.1771518103.git.anatoly.burakov@intel.com> (raw)
In-Reply-To: <cover.1771518103.git.anatoly.burakov@intel.com> <cover.1771518103.git.anatoly.burakov@intel.com>
Currently, when configuring IRQ maps, we are using rte_zmalloc followed
by an immediate rte_free. This memory does not need to be stored in
hugepage memory, so replace it with stack allocation.
The original code did not check maximum IRQ map size, because the design
was built around an anti-pattern of caller having to chunk the IRQ map
calls. This has now been corrected as well.
Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
---
drivers/net/intel/iavf/iavf.h | 3 +-
drivers/net/intel/iavf/iavf_ethdev.c | 15 +---
drivers/net/intel/iavf/iavf_vchnl.c | 110 +++++++++++++++++----------
3 files changed, 72 insertions(+), 56 deletions(-)
diff --git a/drivers/net/intel/iavf/iavf.h b/drivers/net/intel/iavf/iavf.h
index 77a2c94290..f9bb398a77 100644
--- a/drivers/net/intel/iavf/iavf.h
+++ b/drivers/net/intel/iavf/iavf.h
@@ -511,8 +511,7 @@ int iavf_add_del_vlan_v2(struct iavf_adapter *adapter, uint16_t vlanid,
bool add);
int iavf_get_vlan_offload_caps_v2(struct iavf_adapter *adapter);
int iavf_config_irq_map(struct iavf_adapter *adapter);
-int iavf_config_irq_map_lv(struct iavf_adapter *adapter, uint16_t num,
- uint16_t index);
+int iavf_config_irq_map_lv(struct iavf_adapter *adapter, uint16_t num);
void iavf_add_del_all_mac_addr(struct iavf_adapter *adapter, bool add);
int iavf_dev_link_update(struct rte_eth_dev *dev,
__rte_unused int wait_to_complete);
diff --git a/drivers/net/intel/iavf/iavf_ethdev.c b/drivers/net/intel/iavf/iavf_ethdev.c
index f7bfd099ed..89826547f0 100644
--- a/drivers/net/intel/iavf/iavf_ethdev.c
+++ b/drivers/net/intel/iavf/iavf_ethdev.c
@@ -919,20 +919,7 @@ static int iavf_config_rx_queues_irqs(struct rte_eth_dev *dev,
goto config_irq_map_err;
}
} else {
- uint16_t num_qv_maps = dev->data->nb_rx_queues;
- uint16_t index = 0;
-
- while (num_qv_maps > IAVF_IRQ_MAP_NUM_PER_BUF) {
- if (iavf_config_irq_map_lv(adapter,
- IAVF_IRQ_MAP_NUM_PER_BUF, index)) {
- PMD_DRV_LOG(ERR, "config interrupt mapping for large VF failed");
- goto config_irq_map_err;
- }
- num_qv_maps -= IAVF_IRQ_MAP_NUM_PER_BUF;
- index += IAVF_IRQ_MAP_NUM_PER_BUF;
- }
-
- if (iavf_config_irq_map_lv(adapter, num_qv_maps, index)) {
+ if (iavf_config_irq_map_lv(adapter, dev->data->nb_rx_queues)) {
PMD_DRV_LOG(ERR, "config interrupt mapping for large VF failed");
goto config_irq_map_err;
}
diff --git a/drivers/net/intel/iavf/iavf_vchnl.c b/drivers/net/intel/iavf/iavf_vchnl.c
index f0ab3b950b..baadb4b686 100644
--- a/drivers/net/intel/iavf/iavf_vchnl.c
+++ b/drivers/net/intel/iavf/iavf_vchnl.c
@@ -1314,81 +1314,111 @@ int
iavf_config_irq_map(struct iavf_adapter *adapter)
{
struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
- struct virtchnl_irq_map_info *map_info;
- struct virtchnl_vector_map *vecmap;
- struct iavf_cmd_info args;
- int len, i, err;
+ struct {
+ struct virtchnl_irq_map_info map_info;
+ struct virtchnl_vector_map vecmap[IAVF_MAX_NUM_QUEUES_DFLT];
+ } map_req = {0};
+ struct virtchnl_irq_map_info *map_info = &map_req.map_info;
+ struct iavf_cmd_info args = {0};
+ int i, err, max_vmi = -1;
- len = sizeof(struct virtchnl_irq_map_info) +
- sizeof(struct virtchnl_vector_map) * vf->nb_msix;
+ if (adapter->dev_data->nb_rx_queues > IAVF_MAX_NUM_QUEUES_DFLT) {
+ PMD_DRV_LOG(ERR, "number of queues (%u) exceeds the max supported (%u)",
+ adapter->dev_data->nb_rx_queues, IAVF_MAX_NUM_QUEUES_DFLT);
+ return -EINVAL;
+ }
- map_info = rte_zmalloc("map_info", len, 0);
- if (!map_info)
- return -ENOMEM;
-
- map_info->num_vectors = vf->nb_msix;
for (i = 0; i < adapter->dev_data->nb_rx_queues; i++) {
- vecmap =
- &map_info->vecmap[vf->qv_map[i].vector_id - vf->msix_base];
+ struct virtchnl_vector_map *vecmap;
+ /* always 0 for 1 MSIX, never bigger than rxq for multi MSIX */
+ uint16_t vmi = vf->qv_map[i].vector_id - vf->msix_base;
+
+ /* can't happen but avoid static analysis warnings */
+ if (vmi >= IAVF_MAX_NUM_QUEUES_DFLT) {
+ PMD_DRV_LOG(ERR, "vector id (%u) exceeds the max supported (%u)",
+ vf->qv_map[i].vector_id,
+ vf->msix_base + IAVF_MAX_NUM_QUEUES_DFLT - 1);
+ return -EINVAL;
+ }
+
+ vecmap = &map_info->vecmap[vmi];
vecmap->vsi_id = vf->vsi_res->vsi_id;
vecmap->rxitr_idx = IAVF_ITR_INDEX_DEFAULT;
vecmap->vector_id = vf->qv_map[i].vector_id;
vecmap->txq_map = 0;
vecmap->rxq_map |= 1 << vf->qv_map[i].queue_id;
+
+ /* MSIX vectors round robin so look for max */
+ if (vmi > max_vmi) {
+ map_info->num_vectors++;
+ max_vmi = vmi;
+ }
}
args.ops = VIRTCHNL_OP_CONFIG_IRQ_MAP;
args.in_args = (u8 *)map_info;
- args.in_args_size = len;
+ args.in_args_size = sizeof(map_req);
args.out_buffer = vf->aq_resp;
args.out_size = IAVF_AQ_BUF_SZ;
err = iavf_execute_vf_cmd_safe(adapter, &args, 0);
if (err)
PMD_DRV_LOG(ERR, "fail to execute command OP_CONFIG_IRQ_MAP");
- rte_free(map_info);
return err;
}
-int
-iavf_config_irq_map_lv(struct iavf_adapter *adapter, uint16_t num,
- uint16_t index)
+static int
+iavf_config_irq_map_lv_chunk(struct iavf_adapter *adapter, uint16_t chunk_sz, uint16_t chunk_start)
{
+ struct {
+ struct virtchnl_queue_vector_maps map_info;
+ struct virtchnl_queue_vector qv_maps[IAVF_CFG_Q_NUM_PER_BUF];
+ } chunk_req = {0};
struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
- struct virtchnl_queue_vector_maps *map_info;
- struct virtchnl_queue_vector *qv_maps;
- struct iavf_cmd_info args;
- int len, i, err;
- int count = 0;
+ struct iavf_cmd_info args = {0};
+ struct virtchnl_queue_vector_maps *map_info = &chunk_req.map_info;
+ struct virtchnl_queue_vector *qv_maps = chunk_req.qv_maps;
+ uint16_t chunk_end = chunk_start + chunk_sz;
+ uint16_t i;
- len = sizeof(struct virtchnl_queue_vector_maps) +
- sizeof(struct virtchnl_queue_vector) * (num - 1);
-
- map_info = rte_zmalloc("map_info", len, 0);
- if (!map_info)
- return -ENOMEM;
+ if (chunk_sz > IAVF_CFG_Q_NUM_PER_BUF)
+ return -EINVAL;
map_info->vport_id = vf->vsi_res->vsi_id;
- map_info->num_qv_maps = num;
- for (i = index; i < index + map_info->num_qv_maps; i++) {
- qv_maps = &map_info->qv_maps[count++];
+ map_info->num_qv_maps = chunk_sz;
+ for (i = chunk_start; i < chunk_end; i++) {
+ qv_maps = &map_info->qv_maps[i];
qv_maps->itr_idx = VIRTCHNL_ITR_IDX_0;
qv_maps->queue_type = VIRTCHNL_QUEUE_TYPE_RX;
- qv_maps->queue_id = vf->qv_map[i].queue_id;
- qv_maps->vector_id = vf->qv_map[i].vector_id;
+ qv_maps->queue_id = vf->qv_map[chunk_start + i].queue_id;
+ qv_maps->vector_id = vf->qv_map[chunk_start + i].vector_id;
}
args.ops = VIRTCHNL_OP_MAP_QUEUE_VECTOR;
args.in_args = (u8 *)map_info;
- args.in_args_size = len;
+ args.in_args_size = sizeof(chunk_req);
args.out_buffer = vf->aq_resp;
args.out_size = IAVF_AQ_BUF_SZ;
- err = iavf_execute_vf_cmd_safe(adapter, &args, 0);
- if (err)
- PMD_DRV_LOG(ERR, "fail to execute command OP_MAP_QUEUE_VECTOR");
- rte_free(map_info);
- return err;
+ return iavf_execute_vf_cmd_safe(adapter, &args, 0);
+}
+
+int
+iavf_config_irq_map_lv(struct iavf_adapter *adapter, uint16_t num)
+{
+ uint16_t c;
+ int err;
+
+ for (c = 0; c < num; c += IAVF_CFG_Q_NUM_PER_BUF) {
+ uint16_t chunk_sz = RTE_MIN(num - c, IAVF_CFG_Q_NUM_PER_BUF);
+ err = iavf_config_irq_map_lv_chunk(adapter, chunk_sz, c);
+ if (err) {
+ PMD_DRV_LOG(ERR, "Failed to configure irq map chunk [%u, %u)",
+ c, c + chunk_sz);
+ return err;
+ }
+ }
+ return 0;
}
void
--
2.47.3
next prev parent reply other threads:[~2026-02-19 16:26 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 ` [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 ` Anatoly Burakov [this message]
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=bbbfd1451069c582d7f664ba47b031be2df0bf22.1771518103.git.anatoly.burakov@intel.com \
--to=anatoly.burakov@intel.com \
--cc=dev@dpdk.org \
--cc=vladimir.medvedkin@intel.com \
/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