* [PATCH] net/mlx5: fix metadata sharing between E-Switch and VM
@ 2025-11-23 10:12 Gregory Etelson
2026-02-04 15:13 ` Raslan Darawsheh
0 siblings, 1 reply; 2+ messages in thread
From: Gregory Etelson @ 2025-11-23 10:12 UTC (permalink / raw)
To: dev
Cc: getelson, mkashani, rasland, Dariusz Sosnowski,
Viacheslav Ovsiienko, Bing Zhao, Ori Kam, Suanming Mou,
Matan Azrad
If metadata sharing between E-Switch and VM (multi GVMI sharing) is
enabled, PMD creates the default metadata copy rule from register A
to register C_1 on Tx.
This rule should be created in group 0, but due to an incorrect
condition, it was created in group 1.
It prevented propagation of metadata from an application.
This patch fixes the condition by adding the missing check for
external rules, so egress group translation applies only to
application rules.
Fixes: a78425ba3793 ("net/mlx5: support flow metadata between E-Switch and VM")
Signed-off-by: Gregory Etelson <getelson@nvidia.com>
Acked-by: Dariusz Sosnowski <dsosnowski@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 c41b99746f..5932b2cd96 100644
--- a/drivers/net/mlx5/mlx5_flow_hw.c
+++ b/drivers/net/mlx5/mlx5_flow_hw.c
@@ -5347,7 +5347,8 @@ __translate_group(struct rte_eth_dev *dev,
NULL,
"group index not supported");
*table_group = group + 1;
- } else if (mlx5_vport_tx_metadata_passing_enabled(priv->sh) && flow_attr->egress) {
+ } else if (mlx5_vport_tx_metadata_passing_enabled(priv->sh) &&
+ flow_attr->egress && external) {
/*
* If VM cross GVMI metadata Tx was enabled, PMD creates a default
* flow rule in the group 0 to copy metadata value.
--
2.51.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] net/mlx5: fix metadata sharing between E-Switch and VM
2025-11-23 10:12 [PATCH] net/mlx5: fix metadata sharing between E-Switch and VM Gregory Etelson
@ 2026-02-04 15:13 ` Raslan Darawsheh
0 siblings, 0 replies; 2+ messages in thread
From: Raslan Darawsheh @ 2026-02-04 15:13 UTC (permalink / raw)
To: Gregory Etelson, dev
Cc: mkashani, Dariusz Sosnowski, Viacheslav Ovsiienko, Bing Zhao,
Ori Kam, Suanming Mou, Matan Azrad
Hi,
On 23/11/2025 12:12 PM, Gregory Etelson wrote:
> If metadata sharing between E-Switch and VM (multi GVMI sharing) is
> enabled, PMD creates the default metadata copy rule from register A
> to register C_1 on Tx.
> This rule should be created in group 0, but due to an incorrect
> condition, it was created in group 1.
> It prevented propagation of metadata from an application.
>
> This patch fixes the condition by adding the missing check for
> external rules, so egress group translation applies only to
> application rules.
>
> Fixes: a78425ba3793 ("net/mlx5: support flow metadata between E-Switch and VM")
>
> Signed-off-by: Gregory Etelson <getelson@nvidia.com>
> Acked-by: Dariusz Sosnowski <dsosnowski@nvidia.com>
Patch applied to next-net-mlx,
Kindest regards
Raslan Darawsheh
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-02-04 15:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-23 10:12 [PATCH] net/mlx5: fix metadata sharing between E-Switch and VM Gregory Etelson
2026-02-04 15:13 ` Raslan Darawsheh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox