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 3E13FA04BC; Thu, 8 Oct 2020 13:51:58 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 227E31BE9F; Thu, 8 Oct 2020 13:51:57 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 72B581BE8C for ; Thu, 8 Oct 2020 13:51:55 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from andreyv@nvidia.com) with SMTP; 8 Oct 2020 14:51:52 +0300 Received: from nvidia.com (r-arch-host11.mtr.labs.mlnx [10.213.43.60]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 098Bppns016800; Thu, 8 Oct 2020 14:51:51 +0300 From: Andrey Vesnovaty To: dev@dpdk.org Cc: jer@marvell.com, jerinjacobk@gmail.com, thomas@monjalon.net, ferruh.yigit@intel.com, stephen@networkplumber.org, bruce.richardson@intel.com, orika@nvidia.com, viacheslavo@nvidia.com, andrey.vesnovaty@gmail.com, mdr@ashroe.eu, nhorman@tuxdriver.com, ajit.khaparde@broadcom.com, samik.gupta@broadcom.com Date: Thu, 8 Oct 2020 14:51:41 +0300 Message-Id: <20201008115143.13208-1-andreyv@nvidia.com> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200702120511.16315-1-andreyv@mellanox.com> References: <20200702120511.16315-1-andreyv@mellanox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v7 0/2] RTE flow shared action 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" This patchset introduces shared action API for RTE flow. v7 changes: * misc spelling fixes and rephrase in commit messages and documentation * RTE flow: * commit message example updated with shared action create configuration argument * shared action configuration struct cocumetation updated * tetspmd: * added handling of direction arguments for shared action create CLI * shared action create/update CLIs can receive all RTE flow action types Andrey Vesnovaty (2): ethdev: add flow shared action API app/testpmd: support shared action app/test-pmd/cmdline.c | 18 ++ app/test-pmd/cmdline_flow.c | 294 +++++++++++++++++++- app/test-pmd/config.c | 216 ++++++++++++++ app/test-pmd/testpmd.h | 20 ++ doc/guides/prog_guide/rte_flow.rst | 19 ++ doc/guides/rel_notes/release_20_11.rst | 9 + doc/guides/testpmd_app_ug/testpmd_funcs.rst | 112 ++++++++ lib/librte_ethdev/rte_ethdev_version.map | 4 + lib/librte_ethdev/rte_flow.c | 84 ++++++ lib/librte_ethdev/rte_flow.h | 169 ++++++++++- lib/librte_ethdev/rte_flow_driver.h | 23 ++ 11 files changed, 966 insertions(+), 2 deletions(-) -- 2.26.2