From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrey Chilikin Subject: [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior Date: Tue, 29 Sep 2015 15:26:38 +0100 Message-ID: <1443536800-13269-2-git-send-email-andrey.chilikin@intel.com> References: <1443536800-13269-1-git-send-email-andrey.chilikin@intel.com> To: dev@dpdk.org Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 64495B62 for ; Tue, 29 Sep 2015 16:27:27 +0200 (CEST) In-Reply-To: <1443536800-13269-1-git-send-email-andrey.chilikin@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Add new flow director behavior RTE_ETH_FDIR_OTHER to assign a queue by other filters Signed-off-by: Andrey Chilikin --- lib/librte_ether/rte_eth_ctrl.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/librte_ether/rte_eth_ctrl.h b/lib/librte_ether/rte_eth_ctrl.h index 26b7b33..3acf501 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_OTHER, }; /** -- 1.7.4.1