mirror of
https://github.com/raspberrypi/linux.git
synced 2026-01-03 08:14:12 +00:00
net/mlx5: Compare sampler flow destination ID in fs_core
When comparing sampler flow destinations, in fs_core, consider sampler ID as well. Signed-off-by: Yevgeny Kliteynik <kliteyn@nvidia.com> Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
This commit is contained in:
committed by
Saeed Mahameed
parent
ff8744b5eb
commit
6f8515568e
@@ -1504,7 +1504,9 @@ static bool mlx5_flow_dests_cmp(struct mlx5_flow_destination *d1,
|
||||
(d1->type == MLX5_FLOW_DESTINATION_TYPE_TIR &&
|
||||
d1->tir_num == d2->tir_num) ||
|
||||
(d1->type == MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE_NUM &&
|
||||
d1->ft_num == d2->ft_num))
|
||||
d1->ft_num == d2->ft_num) ||
|
||||
(d1->type == MLX5_FLOW_DESTINATION_TYPE_FLOW_SAMPLER &&
|
||||
d1->sampler_id == d2->sampler_id))
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user