diff options
author | Yevgeny Kliteynik <kliteyn@nvidia.com> | 2023-12-17 11:24:08 +0200 |
---|---|---|
committer | Saeed Mahameed <saeedm@nvidia.com> | 2024-01-24 00:15:36 -0800 |
commit | 5665954293f13642f9c052ead83c1e9d8cff186f (patch) | |
tree | 0bcba4b8b3ebd11928df66eee6cd6130720fbc6d /drivers/net/ethernet | |
parent | ec7cc38ef9f83553102e84c82536971a81630739 (diff) | |
download | lwn-5665954293f13642f9c052ead83c1e9d8cff186f.tar.gz lwn-5665954293f13642f9c052ead83c1e9d8cff186f.zip |
net/mlx5: DR, Use the right GVMI number for drop action
When FW provides ICM addresses for drop RX/TX, the provided capability
is 64 bits that contain its GVMI as well as the ICM address itself.
In case of TX DROP this GVMI is different from the GVMI that the
domain is operating on.
This patch fixes the action to use these GVMI IDs, as provided by FW.
Fixes: 9db810ed2d37 ("net/mlx5: DR, Expose steering action functionality")
Signed-off-by: Yevgeny Kliteynik <kliteyn@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c b/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c index 6f9790e97fed..95517c4aca0f 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c @@ -788,6 +788,7 @@ int mlx5dr_actions_build_ste_arr(struct mlx5dr_matcher *matcher, switch (action_type) { case DR_ACTION_TYP_DROP: attr.final_icm_addr = nic_dmn->drop_icm_addr; + attr.hit_gvmi = nic_dmn->drop_icm_addr >> 48; break; case DR_ACTION_TYP_FT: dest_action = action; |