From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E1A2BA0350; Wed, 1 Jul 2020 10:47:26 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 72DB21C1A8; Wed, 1 Jul 2020 10:47:26 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id CE5AE1C1A8 for ; Wed, 1 Jul 2020 10:47:24 +0200 (CEST) IronPort-SDR: aAjAbHl315wCqqQ4UBSBsQeSAtEaOzWpZDtMSye6xbLsDTeT8DZq6q9Ph5MH70tBV+KCviAZop nkvQRJ8aiZ2A== X-IronPort-AV: E=McAfee;i="6000,8403,9668"; a="208021318" X-IronPort-AV: E=Sophos;i="5.75,299,1589266800"; d="scan'208";a="208021318" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Jul 2020 01:47:23 -0700 IronPort-SDR: HvXFYFm5UXX0I35zjr3G2CGqnE40vvJHiH7v46rdkvbaBl746+RfB25BCMZZ2eoEb9rPzGqnsK ganQZXWuqL9Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,299,1589266800"; d="scan'208";a="295495778" Received: from intel.sh.intel.com ([10.239.255.20]) by orsmga002.jf.intel.com with ESMTP; 01 Jul 2020 01:47:22 -0700 From: Chenxu Di To: dev@dpdk.org Cc: Yang Qiming , jia.guo@intel.com, Chenxu Di Date: Wed, 1 Jul 2020 08:24:46 +0000 Message-Id: <20200701082451.34511-1-chenxux.di@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200611060142.75465-1-chenxux.di@intel.com> References: <20200611060142.75465-1-chenxux.di@intel.com> Subject: [dpdk-dev] [PATCH v3 0/5] re-implement legacy filter functions by private API X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The legacy filter API will be superseded by rte_flow. There are also several small features which can not be implemented in rte_flow. This patch re-implemented features get_fdir_info, get_fdir_stat and set_gre_key_len as private API. This patch also enable RSS action in flow query. v3: -updated the init of ret in testpmd -updated the log style -added sample in commit log v2: -fixed the __rte_experimental flag Chenxu Di (5): net/i40e: add private APIs net/ixgbe: add private APIs app/testpmd: re-implement commands by using private API net/i40e: enable flow query RSS app/testpmd: support query RSS config in flow query app/test-pmd/cmdline.c | 6 + app/test-pmd/config.c | 120 ++++++++++++++++++-- doc/guides/rel_notes/release_20_08.rst | 14 +++ drivers/net/i40e/i40e_ethdev.c | 2 +- drivers/net/i40e/i40e_ethdev.h | 5 + drivers/net/i40e/i40e_fdir.c | 4 +- drivers/net/i40e/i40e_flow.c | 49 ++++++++ drivers/net/i40e/rte_pmd_i40e.c | 51 +++++++++ drivers/net/i40e/rte_pmd_i40e.h | 49 ++++++++ drivers/net/i40e/rte_pmd_i40e_version.map | 3 + drivers/net/ixgbe/ixgbe_ethdev.h | 4 + drivers/net/ixgbe/ixgbe_fdir.c | 8 +- drivers/net/ixgbe/rte_pmd_ixgbe.c | 33 ++++++ drivers/net/ixgbe/rte_pmd_ixgbe.h | 33 ++++++ drivers/net/ixgbe/rte_pmd_ixgbe_version.map | 2 + 15 files changed, 364 insertions(+), 19 deletions(-) -- 2.17.1