From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3F4D5C433E0 for ; Mon, 15 Jun 2020 02:37:41 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id AA4B42063A for ; Mon, 15 Jun 2020 02:37:40 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org AA4B42063A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 95BB41BE9E; Mon, 15 Jun 2020 04:37:39 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 7DB5B4C90 for ; Mon, 15 Jun 2020 04:37:38 +0200 (CEST) IronPort-SDR: /jttxWc4ZwpS9zF+UFAEqLCm55NYmvfI+wOtVIEt5ecf0Kw4q77f176q5M6Bn29QLKZpzDLDBr dIteGZ5HiBuQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jun 2020 19:37:37 -0700 IronPort-SDR: R6OI8Cmg1/+7V1FIqifL/U05VGVgJf2yUd8kT0bnfqHKgq6/9GJC4WBReaRU0T1xuNLWHeom3p OYOcA7GAq0ww== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,513,1583222400"; d="scan'208";a="382382845" Received: from intel.sh.intel.com ([10.239.255.20]) by fmsmga001.fm.intel.com with ESMTP; 14 Jun 2020 19:37:36 -0700 From: Chenxu Di To: dev@dpdk.org Cc: beilei.xing@intel.com, Yang Qiming , Chenxu Di Date: Mon, 15 Jun 2020 02:18:53 +0000 Message-Id: <20200615021858.13985-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 v2 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. 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 | 23 ++-- app/test-pmd/config.c | 129 ++++++++++++++++++-- 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 | 51 ++++++++ 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, 383 insertions(+), 28 deletions(-) -- 2.17.1