From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrey Chilikin Subject: [PATCH 3/3] ixgbe: add check for supported flow director behaviors Date: Tue, 29 Sep 2015 15:26:40 +0100 Message-ID: <1443536800-13269-4-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 2A3E8B62 for ; Tue, 29 Sep 2015 16:27:25 +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" Handle only supported flow director behaviors Signed-off-by: Andrey Chilikin --- drivers/net/ixgbe/ixgbe_fdir.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/net/ixgbe/ixgbe_fdir.c b/drivers/net/ixgbe/ixgbe_fdir.c index 5c8b833..cf0e8be 100644 --- a/drivers/net/ixgbe/ixgbe_fdir.c +++ b/drivers/net/ixgbe/ixgbe_fdir.c @@ -959,7 +959,8 @@ ixgbe_add_del_fdir_filter(struct rte_eth_dev *dev, " signature mode."); return -EINVAL; } - } else if (fdir_filter->action.rx_queue < IXGBE_MAX_RX_QUEUE_NUM) + } else if (fdir_filter->action.behavior == RTE_ETH_FDIR_ACCEPT && + fdir_filter->action.rx_queue < IXGBE_MAX_RX_QUEUE_NUM) queue = (uint8_t)fdir_filter->action.rx_queue; else return -EINVAL; -- 1.7.4.1