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=-11.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,UNPARSEABLE_RELAY,USER_AGENT_GIT autolearn=ham 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 16B81C433B4 for ; Fri, 16 Apr 2021 17:54:18 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 8D5DE61090 for ; Fri, 16 Apr 2021 17:54:17 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8D5DE61090 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=nvidia.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C1BBF161BF5; Fri, 16 Apr 2021 19:54:16 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by mails.dpdk.org (Postfix) with ESMTP id 3182F161BED for ; Fri, 16 Apr 2021 19:54:15 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from bingz@nvidia.com) with SMTP; 16 Apr 2021 20:54:12 +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 13GHsAVN025093; Fri, 16 Apr 2021 20:54:11 +0300 From: Bing Zhao To: orika@nvidia.com, thomas@monjalon.net, ferruh.yigit@intel.com, andrew.rybchenko@oktetlabs.ru Cc: dev@dpdk.org, ajit.khaparde@broadcom.com, xiaoyun.li@intel.com Date: Sat, 17 Apr 2021 01:54:06 +0800 Message-Id: <1618595649-157464-1-git-send-email-bingz@nvidia.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1618062393-205611-1-git-send-email-bingz@nvidia.com> References: <1618062393-205611-1-git-send-email-bingz@nvidia.com> Subject: [dpdk-dev] [PATCH v3 0/3] ethdev: introduce conntrack flow action and item 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" Depends-on: series-16451 ("Change shared action API to action handle API") This patch set includes the conntrack action and item definitions as well as the testpmd CLI proposal. Documents of release notes and guides are also updated. --- v2: add testpmd CLI proposal v3: add doc update --- Bing Zhao (3): ethdev: introduce conntrack flow action and item app/testpmd: add CLI for conntrack doc: update for conntrack app/test-pmd/cmdline.c | 354 ++++++++++++++++++++ app/test-pmd/cmdline_flow.c | 92 +++++ app/test-pmd/config.c | 65 +++- app/test-pmd/testpmd.h | 2 + doc/guides/prog_guide/rte_flow.rst | 113 +++++++ doc/guides/rel_notes/release_21_05.rst | 4 + doc/guides/testpmd_app_ug/testpmd_funcs.rst | 35 ++ lib/librte_ethdev/rte_flow.c | 2 + lib/librte_ethdev/rte_flow.h | 207 ++++++++++++ 9 files changed, 873 insertions(+), 1 deletion(-) -- 2.19.0.windows.1