From: Jingjing Wu Date: Thu, 29 Jan 2015 05:29:12 +0000 (+0800) Subject: ethdev: extend flow type and flexible payload type for flow director X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=1145eec6086b5e39e19c9e325563cc93946b641f;p=dpdk.git ethdev: extend flow type and flexible payload type for flow director 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 Acked-by: Helin Zhang --- diff --git a/lib/librte_ether/rte_eth_ctrl.h b/lib/librte_ether/rte_eth_ctrl.h index 0ce241ef1f..87d4075a1f 100644 --- a/lib/librte_ether/rte_eth_ctrl.h +++ b/lib/librte_ether/rte_eth_ctrl.h @@ -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,