From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 95C19A0547; Wed, 21 Apr 2021 13:41:31 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1F7DA41A8F; Wed, 21 Apr 2021 13:41:31 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 38CA041A72 for ; Wed, 21 Apr 2021 13:41:29 +0200 (CEST) IronPort-SDR: tmxYmto2L9spfYgIUC/IoVYdjVdx4tOcN2+AoRgxi8ccHfPoV7urEU+XXdnw/AUqc1bgIZx13g HzG3rnRjVJmg== X-IronPort-AV: E=McAfee;i="6200,9189,9960"; a="256997270" X-IronPort-AV: E=Sophos;i="5.82,238,1613462400"; d="scan'208";a="256997270" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2021 04:41:27 -0700 IronPort-SDR: VzSGacBQVOn8EEBANmsuOJB5hkfYLh3S6oNNzK37C3aQBwTX9+aoS+Q1VHYjtYTf70S95EJz2K pYyn5JJ0xpcg== X-IronPort-AV: E=Sophos;i="5.82,238,1613462400"; d="scan'208";a="455311280" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.206.218]) ([10.213.206.218]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2021 04:41:26 -0700 From: Ferruh Yigit To: Kevin Traynor , "Min Hu (Connor)" , dev@dpdk.org Cc: xiaoyun.li@intel.com References: <1618469214-35316-1-git-send-email-humin29@huawei.com> <1618998091-36162-1-git-send-email-humin29@huawei.com> <691afaf8-1f6d-416a-d377-382cae600200@redhat.com> <6933ab1a-c7bc-a6f6-bcc9-d1459f3e8b1a@intel.com> X-User: ferruhy Message-ID: <7cf6a56b-bbc6-94a4-0119-178ffe631cd3@intel.com> Date: Wed, 21 Apr 2021 12:41:25 +0100 MIME-Version: 1.0 In-Reply-To: <6933ab1a-c7bc-a6f6-bcc9-d1459f3e8b1a@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v3] app/testpmd: support the query of link flow ctrl info 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/21/2021 12:36 PM, Ferruh Yigit wrote: > On 4/21/2021 12:12 PM, Kevin Traynor wrote: >> On 21/04/2021 10:41, Min Hu (Connor) wrote: >>> From: Huisong Li >>> >>> This patch supports the query of the link flow control parameter >>> on a port. >>> >>> The command format is as follows: >>> show port flow_ctrl >>> >>> Signed-off-by: Huisong Li >>> Signed-off-by: Min Hu (Connor) >> >> Thanks Connor, >> Acked-by: Kevin Traynor >> > > Carrying Xiaoyun's ack from previous version: > Acked-by: Xiaoyun Li > > Applied to dpdk-next-net/main, thanks. > > >>> @@ -1524,6 +1524,13 @@ Where: >>>   * ``autoneg``: Change the auto-negotiation parameter. >>> +show flow ctrl >>> +~~~~~~~~~~~~~~ >>> + > > Expanded to "show flow control" while merging. > > > Ahh, it seems the release notes update is missing, adding following while merging: diff --git a/doc/guides/rel_notes/release_21_05.rst b/doc/guides/rel_notes/release_21_05.rst index b13c76124169..b36c120e5e1d 100644 --- a/doc/guides/rel_notes/release_21_05.rst +++ b/doc/guides/rel_notes/release_21_05.rst @@ -233,6 +233,8 @@ New Features item matching. * Added command to cleanup a Tx queue's mbuf on a port. ``port cleanup (port_id) txq (queue_id) (free_cnt)`` + * Added command to show link flow control info. + ``show port (port_id) flow_ctrl`` * **Updated ipsec-secgw sample application.**