From mboxrd@z Thu Jan 1 00:00:00 1970 From: Beilei Xing Subject: [PATCH 11/24] net/i40e: add flow validate function Date: Fri, 2 Dec 2016 06:53:32 -0500 Message-ID: <1480679625-4157-12-git-send-email-beilei.xing@intel.com> References: <1480679625-4157-1-git-send-email-beilei.xing@intel.com> Cc: dev@dpdk.org, wenzhuo.lu@intel.com To: jingjing.wu@intel.com, helin.zhang@intel.com Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 81D70567A for ; Fri, 2 Dec 2016 05:13:11 +0100 (CET) In-Reply-To: <1480679625-4157-1-git-send-email-beilei.xing@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch adds handling RTE_ETH_FILTER_GENERIC filter type in .filter_ctrl function, and result in a pointer to i40e_flow_ops. This patch also adds flow validate ops. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c index 997e2fe..c1623c4 100644 --- a/drivers/net/i40e/i40e_ethdev.c +++ b/drivers/net/i40e/i40e_ethdev.c @@ -52,6 +52,7 @@ #include #include #include +#include #include "i40e_logs.h" #include "base/i40e_prototype.h" @@ -490,6 +491,12 @@ static void i40e_tunnel_filter_restore(struct i40e_pf *pf); static void i40e_rss_hash_restore(struct i40e_pf *pf); static void i40e_filter_restore(struct i40e_pf *pf); +static int i40e_flow_validate(__rte_unused struct rte_eth_dev *dev, + const struct rte_flow_attr *attr, + const struct rte_flow_item *pattern, + const struct rte_flow_action *actions, + struct rte_flow_error *error); + static const struct rte_pci_id pci_id_i40e_map[] = { { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_SFP_XL710) }, { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_QEMU) }, @@ -584,6 +591,10 @@ static const struct eth_dev_ops i40e_eth_dev_ops = { .mtu_set = i40e_dev_mtu_set, }; +static const struct rte_flow_ops i40e_flow_ops = { + .validate = i40e_flow_validate, +}; + /* store statistics names and its offset in stats structure */ struct rte_i40e_xstats_name_off { char name[RTE_ETH_XSTATS_NAME_SIZE]; @@ -8505,6 +8516,11 @@ i40e_dev_filter_ctrl(struct rte_eth_dev *dev, case RTE_ETH_FILTER_FDIR: ret = i40e_fdir_ctrl_func(dev, filter_op, arg); break; + case RTE_ETH_FILTER_GENERIC: + if (filter_op != RTE_ETH_FILTER_GET) + return -EINVAL; + *(const void **)arg = &i40e_flow_ops; + break; default: PMD_DRV_LOG(WARNING, "Filter type (%d) not supported", filter_type); @@ -10223,3 +10239,21 @@ i40e_filter_restore(struct i40e_pf *pf) i40e_fdir_filter_restore(pf); i40e_rss_hash_restore(pf); } + +static int +i40e_flow_validate(__rte_unused struct rte_eth_dev *dev, + const struct rte_flow_attr *attr, + const struct rte_flow_item *pattern, + const struct rte_flow_action *actions, + struct rte_flow_error *error) +{ + struct rte_eth_ethertype_filter ethertype_filter; + int ret; + + ret = cons_parse_ethertype_filter(attr, pattern, actions, + ðertype_filter, error); + if (!ret) + return 0; + + return ret; +} -- 2.5.5