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=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 4306EC433ED for ; Wed, 14 Apr 2021 09:15:23 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id AF84660E08 for ; Wed, 14 Apr 2021 09:15:22 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org AF84660E08 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 [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0AF141618CE; Wed, 14 Apr 2021 11:15:22 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 532571618CA for ; Wed, 14 Apr 2021 11:15:15 +0200 (CEST) IronPort-SDR: 8F5PphhHL736PQaIkbSuTjFdbAUr46ovcrawwMF8vn9zZDZTTib33I/rVhnNEQc6hqbuVXCw7p 7XXPpaiNT4vA== X-IronPort-AV: E=McAfee;i="6200,9189,9953"; a="181722514" X-IronPort-AV: E=Sophos;i="5.82,221,1613462400"; d="scan'208";a="181722514" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Apr 2021 02:15:12 -0700 IronPort-SDR: s6H65FxIxb8YQq5cxlDoS4o71y4yh1LxLQvNCL8PQ0C2qRQKHYK4RVH9zVedYPnOaKfuLBBzhT QmvPpIWYT23g== X-IronPort-AV: E=Sophos;i="5.82,221,1613462400"; d="scan'208";a="461144896" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.205.34]) ([10.213.205.34]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Apr 2021 02:15:10 -0700 To: Haifei Luo , dev@dpdk.org Cc: orika@nvidia.com, viacheslavo@nvidia.com, rasland@nvidia.com, xuemingl@nvidia.com, ajit.khaparde@broadcom.com References: <1615277716-64404-1-git-send-email-haifeil@nvidia.com> <1618389706-183883-1-git-send-email-haifeil@nvidia.com> <1618389706-183883-4-git-send-email-haifeil@nvidia.com> From: Ferruh Yigit X-User: ferruhy Message-ID: Date: Wed, 14 Apr 2021 10:15:06 +0100 MIME-Version: 1.0 In-Reply-To: <1618389706-183883-4-git-send-email-haifeil@nvidia.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v4 3/3] doc: add single flow dump to guides 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" On 4/14/2021 9:41 AM, Haifei Luo wrote: > Add testpmd CLI and API changes in release_notes. > > Signed-off-by: Haifei Luo > --- > doc/guides/rel_notes/release_21_05.rst | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/doc/guides/rel_notes/release_21_05.rst b/doc/guides/rel_notes/release_21_05.rst > index a0b9079..e3ae470 100644 > --- a/doc/guides/rel_notes/release_21_05.rst > +++ b/doc/guides/rel_notes/release_21_05.rst > @@ -174,6 +174,8 @@ New Features > ``dpdk-testpmd -- --eth-link-speed N`` > * Added command to display Rx queue used descriptor count. > ``show port (port_id) rxq (queue_id) desc used count`` > + * Added command to dump internal representation information of single flow. > + ``flow dump (port_id) rule (rule_id)`` > > > Removed Items > @@ -207,6 +209,9 @@ API Changes > Also, make sure to start the actual text at the margin. > ======================================================= > > +* ethdev: Added a rte_flow pointer parameter to the function > + ``rte_flow_dev_dump()`` allowing dump for single flow. > + > * eal: The experimental TLS API added in ``rte_thread.h`` has been renamed > from ``rte_thread_tls_*`` to ``rte_thread_*`` to avoid naming redundancy > and confusion with the transport layer security term. > Hi Haifei, I guess you missed the following comment to v3, can you please check it: Can you please distribute the release notes updates to the patches that introduces the change? So there should be a separate release notes update patch. Thanks.