Skip to content

Commit

Permalink
net/mlx5: DR, Fix STEv0 source_eswitch_owner_vhca_id support
Browse files Browse the repository at this point in the history
Check vport_cap only if match on source gvmi is required.

Signed-off-by: Yevgeny Kliteynik <kliteyn@nvidia.com>
Reviewed-by: Alex Vesker <valex@nvidia.com>
Reviewed-by: Saeed Mahameed <saeedm@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
  • Loading branch information
Yevgeny Kliteynik authored and Saeed Mahameed committed Jan 5, 2021
1 parent b7f7ad1 commit 7863c91
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions drivers/net/ethernet/mellanox/mlx5/core/steering/dr_ste_v0.c
Original file line number Diff line number Diff line change
Expand Up @@ -1227,23 +1227,26 @@ dr_ste_v0_build_src_gvmi_qpn_tag(struct mlx5dr_match_param *value,
caps = &dmn->peer_dmn->info.caps;
else
return -EINVAL;

misc->source_eswitch_owner_vhca_id = 0;
} else {
caps = &dmn->info.caps;
}

vport_cap = mlx5dr_get_vport_cap(caps, misc->source_port);
if (!vport_cap) {
mlx5dr_err(dmn, "Vport 0x%x is invalid\n",
misc->source_port);
return -EINVAL;
}

source_gvmi_set = MLX5_GET(ste_src_gvmi_qp, bit_mask, source_gvmi);
if (vport_cap->vport_gvmi && source_gvmi_set)
MLX5_SET(ste_src_gvmi_qp, tag, source_gvmi, vport_cap->vport_gvmi);
if (source_gvmi_set) {
vport_cap = mlx5dr_get_vport_cap(caps, misc->source_port);
if (!vport_cap) {
mlx5dr_err(dmn, "Vport 0x%x is invalid\n",
misc->source_port);
return -EINVAL;
}

misc->source_eswitch_owner_vhca_id = 0;
misc->source_port = 0;
if (vport_cap->vport_gvmi)
MLX5_SET(ste_src_gvmi_qp, tag, source_gvmi, vport_cap->vport_gvmi);

misc->source_port = 0;
}

return 0;
}
Expand Down

0 comments on commit 7863c91

Please sign in to comment.