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 E174FA00BE; Wed, 8 Jul 2020 03:37:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D273B1DB5E; Wed, 8 Jul 2020 03:37:16 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 2EBF51DB4F for ; Wed, 8 Jul 2020 03:37:14 +0200 (CEST) IronPort-SDR: e9u8jXJ/lhHghM9u+DYPK412bwElfaLMfcTy+Ge2nD36t5DVGOSqkvWR9WAvIoRn0u4aoC7dAB aJI0g3qmxOBQ== X-IronPort-AV: E=McAfee;i="6000,8403,9675"; a="149235866" X-IronPort-AV: E=Sophos;i="5.75,326,1589266800"; d="scan'208";a="149235866" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jul 2020 18:37:13 -0700 IronPort-SDR: TgvF3fxDgVdL4yP3bxYAbvzjnj554fA/4bUX+1O8njdLxzAtfSYclu6BKASMesP1P2kjbTujn/ 5zTnv8F2YLzg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,326,1589266800"; d="scan'208";a="297570782" Received: from intel.sh.intel.com ([10.239.255.20]) by orsmga002.jf.intel.com with ESMTP; 07 Jul 2020 18:37:11 -0700 From: Chenxu Di To: dev@dpdk.org Cc: Yang Qiming , Chenxu Di Date: Wed, 8 Jul 2020 01:18:36 +0000 Message-Id: <20200708011841.22295-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 v4 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. v4: -updated code in testpmd v3: -updated the init of ret in testpmd -updated the log style 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 | 4 + app/test-pmd/config.c | 112 ++++++++++++++++++-- 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, 353 insertions(+), 20 deletions(-) -- 2.17.1