[PATCH v1] net/mlx5: fix aggr affinity pattern create failures
Rongwei Liu
rongweil at nvidia.com
Mon Aug 3 11:05:52 CEST 2026
The mlx5 PMD attempts to validate the pattern template
by creating an internal table under group non-zero.
Aggr_affinity is only supported under root table and skip
its validation. Table create still fails due to definer
translation error.
Fixes: 80c676259a04 ("net/mlx5: validate HWS template items")
Cc: stable at dpdk.org
Cc: Gregory Etelson <getelson at nvidia.com>
Signed-off-by: Rongwei Liu <rongweil at nvidia.com>
Acked-by: Dariusz Sosnowski <dsosnowski at nvidia.com>
---
drivers/net/mlx5/mlx5_flow_hw.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/net/mlx5/mlx5_flow_hw.c b/drivers/net/mlx5/mlx5_flow_hw.c
index 1cffdcc54d..30ef2f1c2d 100644
--- a/drivers/net/mlx5/mlx5_flow_hw.c
+++ b/drivers/net/mlx5/mlx5_flow_hw.c
@@ -9588,7 +9588,8 @@ flow_hw_pattern_template_create(struct rte_eth_dev *dev,
}
}
rte_atomic_fetch_add_explicit(&it->refcnt, 1, rte_memory_order_relaxed);
- if (external) {
+ /* AGGR_AFFINITY only supports under group 0 */
+ if (external && !(it->item_flags & MLX5_FLOW_ITEM_AGGR_AFFINITY)) {
rc = pattern_template_validate(dev, &it, 1, error);
if (rc)
goto error;
--
2.53.0
More information about the dev
mailing list