return true;
 }
 
+static bool
+tc_act_is_missable_ct(const struct flow_action_entry *act)
+{
+       return !(act->ct.action & TCA_CT_ACT_CLEAR);
+}
+
 struct mlx5e_tc_act mlx5e_tc_act_ct = {
        .can_offload = tc_act_can_offload_ct,
        .parse_action = tc_act_parse_ct,
-       .is_multi_table_act = tc_act_is_multi_table_act_ct,
        .post_parse = tc_act_post_parse_ct,
+       .is_multi_table_act = tc_act_is_multi_table_act_ct,
+       .is_missable = tc_act_is_missable_ct,
 };
 
 
        enum mlx5_flow_namespace_type ns_type;
        struct mlx5e_priv *priv = flow->priv;
        struct flow_action_entry *act, **_act;
+       struct mlx5_flow_attr *prev_attr;
        struct mlx5e_tc_act *tc_act;
+       bool is_missable;
        int err, i;
 
        flow_action_reorder.num_entries = flow_action->num_entries;
        flow_action_for_each(i, _act, &flow_action_reorder) {
                jump_state.jump_target = false;
                act = *_act;
+               is_missable = false;
+               prev_attr = attr;
+
                tc_act = mlx5e_tc_act_get(act->id, ns_type);
                if (!tc_act) {
                        NL_SET_ERR_MSG_MOD(extack, "Not implemented offload action");
                        goto out_free;
 
                parse_state->actions |= attr->action;
-               if (!tc_act->stats_action)
-                       attr->tc_act_cookies[attr->tc_act_cookies_count++] = act->cookie;
 
                /* Split attr for multi table act if not the last act. */
                if (jump_state.jump_target ||
                    (tc_act->is_multi_table_act &&
                    tc_act->is_multi_table_act(priv, act, attr) &&
                    i < flow_action_reorder.num_entries - 1)) {
+                       is_missable = tc_act->is_missable ? tc_act->is_missable(act) : false;
+
                        err = mlx5e_tc_act_post_parse(parse_state, flow_action, attr, ns_type);
                        if (err)
                                goto out_free;
 
                        list_add(&attr->list, &flow->attrs);
                }
+
+               if (is_missable) {
+                       /* Add counter to prev, and assign act to new (next) attr */
+                       prev_attr->action |= MLX5_FLOW_CONTEXT_ACTION_COUNT;
+                       flow_flag_set(flow, USE_ACT_STATS);
+
+                       attr->tc_act_cookies[attr->tc_act_cookies_count++] = act->cookie;
+               } else if (!tc_act->stats_action) {
+                       prev_attr->tc_act_cookies[prev_attr->tc_act_cookies_count++] = act->cookie;
+               }
        }
 
        kfree(flow_action_reorder.entries);