DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] net/mlx5/hws: fix the valid bit of E-Switch owner
@ 2024-07-29 14:06 Bing Zhao
  2024-07-29 15:54 ` Dariusz Sosnowski
  0 siblings, 1 reply; 3+ messages in thread
From: Bing Zhao @ 2024-07-29 14:06 UTC (permalink / raw)
  To: dsosnowski, viacheslavo, dev, rasland
  Cc: orika, suanmingm, matan, erezsh, Alex Vesker

The 'eswitch_owner_vhca_id_valid' only depends on the
'merged_eswitch' capability. And it should be set for all
vport actions.

Fixes: ac8415cfe760 ("net/mlx5/hws: set E-Switch owner VHC ID valid")
Cc: erezsh@nvidia.com

Signed-off-by: Bing Zhao <bingz@nvidia.com>
Reviewed-by: Alex Vesker <valex@nvidia.com>
---
 drivers/net/mlx5/hws/mlx5dr_action.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/mlx5/hws/mlx5dr_action.c b/drivers/net/mlx5/hws/mlx5dr_action.c
index 8f6be37818..3fceb96de2 100644
--- a/drivers/net/mlx5/hws/mlx5dr_action.c
+++ b/drivers/net/mlx5/hws/mlx5dr_action.c
@@ -826,7 +826,7 @@ mlx5dr_action_fixup_stc_attr(struct mlx5dr_context *ctx,
 			fixup_stc_attr->vport.vport_num = 0;
 			fixup_stc_attr->vport.esw_owner_vhca_id = stc_attr->vport.esw_owner_vhca_id;
 			fixup_stc_attr->vport.eswitch_owner_vhca_id_valid =
-				ctx->caps->merged_eswitch;
+				stc_attr->vport.eswitch_owner_vhca_id_valid;
 		}
 		use_fixup = true;
 		break;
@@ -1057,6 +1057,7 @@ static void mlx5dr_action_fill_stc_attr(struct mlx5dr_action *action,
 		attr->action_type = MLX5_IFC_STC_ACTION_TYPE_JUMP_TO_VPORT;
 		attr->vport.vport_num = action->vport.vport_num;
 		attr->vport.esw_owner_vhca_id =	action->vport.esw_owner_vhca_id;
+		attr->vport.eswitch_owner_vhca_id_valid = action->ctx->caps->merged_eswitch;
 		break;
 	case MLX5DR_ACTION_TYP_POP_VLAN:
 		attr->action_type = MLX5_IFC_STC_ACTION_TYPE_REMOVE_WORDS;
-- 
2.34.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] net/mlx5/hws: fix the valid bit of E-Switch owner
  2024-07-29 14:06 [PATCH] net/mlx5/hws: fix the valid bit of E-Switch owner Bing Zhao
@ 2024-07-29 15:54 ` Dariusz Sosnowski
  2024-07-29 16:27   ` Thomas Monjalon
  0 siblings, 1 reply; 3+ messages in thread
From: Dariusz Sosnowski @ 2024-07-29 15:54 UTC (permalink / raw)
  To: Bing Zhao, Slava Ovsiienko, dev, Raslan Darawsheh
  Cc: Ori Kam, Suanming Mou, Matan Azrad, Erez Shitrit, Alex Vesker

> -----Original Message-----
> From: Bing Zhao <bingz@nvidia.com>
> Sent: Monday, July 29, 2024 16:07
> To: Dariusz Sosnowski <dsosnowski@nvidia.com>; Slava Ovsiienko
> <viacheslavo@nvidia.com>; dev@dpdk.org; Raslan Darawsheh
> <rasland@nvidia.com>
> Cc: Ori Kam <orika@nvidia.com>; Suanming Mou <suanmingm@nvidia.com>;
> Matan Azrad <matan@nvidia.com>; Erez Shitrit <erezsh@nvidia.com>; Alex
> Vesker <valex@nvidia.com>
> Subject: [PATCH] net/mlx5/hws: fix the valid bit of E-Switch owner
> 
> The 'eswitch_owner_vhca_id_valid' only depends on the 'merged_eswitch'
> capability. And it should be set for all vport actions.
> 
> Fixes: ac8415cfe760 ("net/mlx5/hws: set E-Switch owner VHC ID valid")
> Cc: erezsh@nvidia.com
> 
> Signed-off-by: Bing Zhao <bingz@nvidia.com>
> Reviewed-by: Alex Vesker <valex@nvidia.com>

Acked-by: Dariusz Sosnowski <dsosnowski@nvidia.com>

Best regards,
Dariusz Sosnowski

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] net/mlx5/hws: fix the valid bit of E-Switch owner
  2024-07-29 15:54 ` Dariusz Sosnowski
@ 2024-07-29 16:27   ` Thomas Monjalon
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2024-07-29 16:27 UTC (permalink / raw)
  To: Bing Zhao
  Cc: Slava Ovsiienko, dev, Raslan Darawsheh, Ori Kam, Suanming Mou,
	Matan Azrad, Erez Shitrit, Alex Vesker, Dariusz Sosnowski

29/07/2024 17:54, Dariusz Sosnowski:
> > 
> > The 'eswitch_owner_vhca_id_valid' only depends on the 'merged_eswitch'
> > capability. And it should be set for all vport actions.
> > 
> > Fixes: ac8415cfe760 ("net/mlx5/hws: set E-Switch owner VHC ID valid")
> > Cc: erezsh@nvidia.com
> > 
> > Signed-off-by: Bing Zhao <bingz@nvidia.com>
> > Reviewed-by: Alex Vesker <valex@nvidia.com>
> 
> Acked-by: Dariusz Sosnowski <dsosnowski@nvidia.com>

Applied, thanks.



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-07-29 16:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-29 14:06 [PATCH] net/mlx5/hws: fix the valid bit of E-Switch owner Bing Zhao
2024-07-29 15:54 ` Dariusz Sosnowski
2024-07-29 16:27   ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).