[dpdk-dev,v2,1/3] librte_ether: add RTE_ETH_FDIR_PASSTHRU for flow director behavior

Message ID 1443620583-28310-2-git-send-email-andrey.chilikin@intel.com (mailing list archive)
State Accepted, archived
Headers

Commit Message

Chilikin, Andrey Sept. 30, 2015, 1:43 p.m. UTC
  Add new flow director behavior RTE_ETH_FDIR_PASSTHRU to assign a queue by other filters

Signed-off-by: Andrey Chilikin <andrey.chilikin@intel.com>
---
 lib/librte_ether/rte_eth_ctrl.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
  

Patch

diff --git a/lib/librte_ether/rte_eth_ctrl.h b/lib/librte_ether/rte_eth_ctrl.h
index 26b7b33..a0a6aab 100644
--- a/lib/librte_ether/rte_eth_ctrl.h
+++ b/lib/librte_ether/rte_eth_ctrl.h
@@ -417,6 +417,7 @@  struct rte_eth_fdir_input {
 enum rte_eth_fdir_behavior {
 	RTE_ETH_FDIR_ACCEPT = 0,
 	RTE_ETH_FDIR_REJECT,
+	RTE_ETH_FDIR_PASSTHRU,
 };
 
 /**