Fix indirect action list callback parameter.
The function must be called with a flow action to process - not with
actions list.

Fixes: e26f50adbf38 ("net/mlx5: support indirect list meter mark action")

Cc: sta...@dpdk.org

Signed-off-by: Gregory Etelson <getel...@nvidia.com>
Acked-by: Ori Kam <or...@nvidia.com>
---
 drivers/net/mlx5/mlx5_flow_hw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/mlx5/mlx5_flow_hw.c b/drivers/net/mlx5/mlx5_flow_hw.c
index 5b34154bf1..699fddc445 100644
--- a/drivers/net/mlx5/mlx5_flow_hw.c
+++ b/drivers/net/mlx5/mlx5_flow_hw.c
@@ -3547,7 +3547,7 @@ flow_hw_actions_construct(struct rte_eth_dev *dev,
                                    (int)action->type == act_data->type);
                switch ((int)act_data->type) {
                case RTE_FLOW_ACTION_TYPE_INDIRECT_LIST:
-                       act_data->indirect_list_cb(dev, act_data, actions,
+                       act_data->indirect_list_cb(dev, act_data, action,
                                                   
&rule_acts[act_data->action_dst]);
                        break;
                case RTE_FLOW_ACTION_TYPE_INDIRECT:
-- 
2.43.0

Reply via email to