net/mlx5: fix flow mark ID conversion in Direct Verbs
authorYongseok Koh <yskoh@mellanox.com>
Tue, 23 Oct 2018 16:52:15 +0000 (16:52 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 26 Oct 2018 20:14:06 +0000 (22:14 +0200)
Fixes: d02cb0691299 ("net/mlx5: add Direct Verbs translate actions")

Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
Acked-by: Ori Kam <orika@mellanox.com>
drivers/net/mlx5/mlx5_flow_dv.c

index 57b01a7..071f31d 100644 (file)
@@ -1065,15 +1065,16 @@ flow_dv_create_action(const struct rte_flow_action *action,
        case RTE_FLOW_ACTION_TYPE_FLAG:
                dev_flow->dv.actions[actions_n].type = MLX5DV_FLOW_ACTION_TAG;
                dev_flow->dv.actions[actions_n].tag_value =
-                       MLX5_FLOW_MARK_DEFAULT;
+                       mlx5_flow_mark_set(MLX5_FLOW_MARK_DEFAULT);
                actions_n++;
                flow->actions |= MLX5_FLOW_ACTION_FLAG;
                break;
        case RTE_FLOW_ACTION_TYPE_MARK:
                dev_flow->dv.actions[actions_n].type = MLX5DV_FLOW_ACTION_TAG;
                dev_flow->dv.actions[actions_n].tag_value =
-                       ((const struct rte_flow_action_mark *)
-                        (action->conf))->id;
+                       mlx5_flow_mark_set
+                       (((const struct rte_flow_action_mark *)
+                         (action->conf))->id);
                flow->actions |= MLX5_FLOW_ACTION_MARK;
                actions_n++;
                break;