From patchwork Sat Apr 10 14:03:44 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bing Zhao X-Patchwork-Id: 91027 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 47922A0546; Sat, 10 Apr 2021 16:03:58 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D846214125E; Sat, 10 Apr 2021 16:03:57 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by mails.dpdk.org (Postfix) with ESMTP id 874D214125D for ; Sat, 10 Apr 2021 16:03:56 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from bingz@nvidia.com) with SMTP; 10 Apr 2021 17:03:55 +0300 Received: from nvidia.com (mtbc-r640-01.mtbc.labs.mlnx [10.75.70.6]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 13AE3rt7028997; Sat, 10 Apr 2021 17:03:53 +0300 From: Bing Zhao To: orika@nvidia.com, thomas@monjalon.net, ferruh.yigit@intel.com, andrew.rybchenko@oktetlabs.ru, matan@nvidia.com, viacheslavo@nvidia.com Cc: dev@dpdk.org, ajit.khaparde@broadcom.com, getelson@nvidia.com, andreyv@nvidia.com Date: Sat, 10 Apr 2021 22:03:44 +0800 Message-Id: <1618063428-206842-1-git-send-email-bingz@nvidia.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1617940481-125528-1-git-send-email-bingz@nvidia.com> References: <1617940481-125528-1-git-send-email-bingz@nvidia.com> Subject: [dpdk-dev] [PATCH v2 0/4] Change shared action API to action handle API X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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 patch set includes: 1. API changes 2. testpmd adaption and guide update 3. driver update (only net/mlx5 impacted) --- v2: add adaptions of testpmd and driver part --- Bing Zhao (4): ethdev: introduce indirect action APIs app/test-pmd: change to indirect action command doc: update user guide for indirect action net/mlx5: adaption to indirect action API app/test-pmd/cmdline.c | 24 +-- app/test-pmd/cmdline_flow.c | 252 ++++++++++++++-------------- app/test-pmd/config.c | 160 +++++++++--------- app/test-pmd/testpmd.h | 28 ++-- doc/guides/rel_notes/release_21_05.rst | 3 + doc/guides/testpmd_app_ug/testpmd_funcs.rst | 94 +++++------ drivers/net/mlx5/mlx5.c | 2 +- drivers/net/mlx5/mlx5_defs.h | 4 +- drivers/net/mlx5/mlx5_flow.c | 238 +++++++++++++------------- drivers/net/mlx5/mlx5_flow.h | 24 +-- drivers/net/mlx5/mlx5_flow_dv.c | 85 +++++----- lib/librte_ethdev/rte_flow.c | 56 +++---- lib/librte_ethdev/rte_flow.h | 118 +++++++------ lib/librte_ethdev/rte_flow_driver.h | 26 +-- lib/librte_ethdev/version.map | 8 +- 15 files changed, 574 insertions(+), 548 deletions(-)