ethdev: extend flow type and flexible payload type for flow director
authorJingjing Wu <jingjing.wu@intel.com>
Thu, 29 Jan 2015 05:29:12 +0000 (13:29 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sat, 21 Feb 2015 23:59:11 +0000 (00:59 +0100)
This patch adds RTE_ETH_FLOW_TYPE_RAW and RTE_ETH_RAW_PAYLOAD to support the
flexible payload is started from the beginning of the packet.

Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>
Acked-by: Helin Zhang <helin.zhang@intel.com>
lib/librte_ether/rte_eth_ctrl.h

index 0ce241e..87d4075 100644 (file)
@@ -183,6 +183,7 @@ struct rte_eth_tunnel_filter_conf {
  */
 enum rte_eth_flow_type {
        RTE_ETH_FLOW_TYPE_NONE = 0,
+       RTE_ETH_FLOW_TYPE_RAW,
        RTE_ETH_FLOW_TYPE_UDPV4,
        RTE_ETH_FLOW_TYPE_TCPV4,
        RTE_ETH_FLOW_TYPE_SCTPV4,
@@ -347,6 +348,7 @@ struct rte_eth_fdir_filter {
  */
 enum rte_eth_payload_type {
        RTE_ETH_PAYLOAD_UNKNOWN = 0,
+       RTE_ETH_RAW_PAYLOAD,
        RTE_ETH_L2_PAYLOAD,
        RTE_ETH_L3_PAYLOAD,
        RTE_ETH_L4_PAYLOAD,