net/ngbe: support MAC filters
[dpdk.git] / drivers / net / octeontx2 / otx2_flow_parse.c
index 63a3314..91267bb 100644 (file)
@@ -852,7 +852,7 @@ parse_rss_action(struct rte_eth_dev *dev,
                                          attr, "No support of RSS in egress");
        }
 
-       if (dev->data->dev_conf.rxmode.mq_mode != ETH_MQ_RX_RSS)
+       if (dev->data->dev_conf.rxmode.mq_mode != RTE_ETH_MQ_RX_RSS)
                return rte_flow_error_set(error, ENOTSUP,
                                          RTE_FLOW_ERROR_TYPE_ACTION,
                                          act, "multi-queue mode is disabled");
@@ -900,8 +900,6 @@ otx2_flow_parse_actions(struct rte_eth_dev *dev,
 {
        struct otx2_eth_dev *hw = dev->data->dev_private;
        struct otx2_npc_flow_info *npc = &hw->npc_flow;
-       const struct rte_flow_action_port_id *port_act;
-       const struct rte_flow_action_count *act_count;
        const struct rte_flow_action_mark *act_mark;
        const struct rte_flow_action_queue *act_q;
        const struct rte_flow_action_vf *vf_act;
@@ -947,15 +945,6 @@ otx2_flow_parse_actions(struct rte_eth_dev *dev,
                        break;
 
                case RTE_FLOW_ACTION_TYPE_COUNT:
-                       act_count =
-                               (const struct rte_flow_action_count *)
-                               actions->conf;
-
-                       if (act_count->shared == 1) {
-                               errmsg = "Shared Counters not supported";
-                               errcode = ENOTSUP;
-                               goto err_exit;
-                       }
                        /* Indicates, need a counter */
                        flow->ctr_id = 1;
                        req_act |= OTX2_FLOW_ACT_COUNT;
@@ -987,9 +976,18 @@ otx2_flow_parse_actions(struct rte_eth_dev *dev,
                        break;
 
                case RTE_FLOW_ACTION_TYPE_PORT_ID:
-                       port_act = (const struct rte_flow_action_port_id *)
-                               actions->conf;
-                       port_id = port_act->id;
+               case RTE_FLOW_ACTION_TYPE_PORT_REPRESENTOR:
+                       if (actions->type == RTE_FLOW_ACTION_TYPE_PORT_ID) {
+                               const struct rte_flow_action_port_id *port_act;
+
+                               port_act = actions->conf;
+                               port_id = port_act->id;
+                       } else {
+                               const struct rte_flow_action_ethdev *ethdev_act;
+
+                               ethdev_act = actions->conf;
+                               port_id = ethdev_act->port_id;
+                       }
                        if (rte_eth_dev_get_name_by_port(port_id, if_name)) {
                                errmsg = "Name not found for output port id";
                                errcode = EINVAL;
@@ -1188,7 +1186,7 @@ otx2_flow_parse_actions(struct rte_eth_dev *dev,
                 *FLOW_KEY_ALG index. So, till we update the action with
                 *flow_key_alg index, set the action to drop.
                 */
-               if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_RSS)
+               if (dev->data->dev_conf.rxmode.mq_mode == RTE_ETH_MQ_RX_RSS)
                        flow->npc_action = NIX_RX_ACTIONOP_DROP;
                else
                        flow->npc_action = NIX_RX_ACTIONOP_UCAST;