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 8296CA0548; Wed, 21 Apr 2021 10:15:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 52AB44195D; Wed, 21 Apr 2021 10:15:26 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 75D8440140 for ; Wed, 21 Apr 2021 10:15:25 +0200 (CEST) IronPort-SDR: +pqwLxTuRpkV8ynR6dGwATFiGrKtWf4dVGTQ4el95Cn5GfVe4BZoulNpWumBry4GJpcT1AdMA0 F7dFs0yMOsrQ== X-IronPort-AV: E=McAfee;i="6200,9189,9960"; a="195685926" X-IronPort-AV: E=Sophos;i="5.82,238,1613462400"; d="scan'208";a="195685926" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2021 01:15:24 -0700 IronPort-SDR: qJoHEoub+14nxiPPgcLJxo9JO7ZS/Od3+dmPlmEwVleBCdPRtLuolc1vGdQe5kQ1kjqbZO//Z8 5E0fQkLwt8uA== X-IronPort-AV: E=Sophos;i="5.82,238,1613462400"; d="scan'208";a="455241569" Received: from yvankina-mobl.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 01:15:22 -0700 To: Lijun Ou , thomas@monjalon.net Cc: dev@dpdk.org, linuxarm@openeuler.org References: <1618835784-57993-1-git-send-email-oulijun@huawei.com> <1618992577-26999-1-git-send-email-oulijun@huawei.com> From: Ferruh Yigit X-User: ferruhy Message-ID: <4de9cfe5-8a78-0b2e-0116-9415ab418bfc@intel.com> Date: Wed, 21 Apr 2021 09:15:19 +0100 MIME-Version: 1.0 In-Reply-To: <1618992577-26999-1-git-send-email-oulijun@huawei.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH V5] app/test-pmd: support cleanup txq mbufs command 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 9:09 AM, Lijun Ou wrote: > From: Chengwen Feng > > This patch supports cleanup txq mbufs command: > port cleanup (port_id) txq (queue_id) (free_cnt) > > Signed-off-by: Chengwen Feng > Signed-off-by: Lijun Ou > --- > V4->V5: > - rewrite patch title > - define the new cmd. > - Fix the comments given by Ferruh.yigit > > V3->V4: > - revert the V3 scheme. > > V2->V3: > - The command implementation is changed so that the queuestate does > not depend on the command execution. > > V1->V2: > - use Tx instead of TX > - add note in doc > --- > app/test-pmd/cmdline.c | 85 +++++++++++++++++++++++++++++ > doc/guides/rel_notes/release_21_05.rst | 2 + > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 9 +++ > 3 files changed, 96 insertions(+) > Can you please update 'cmd_help_long_parsed' for the help string, this was in v4 and seems dropped during change.