From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id BA2411B19E for ; Wed, 11 Oct 2017 10:51:22 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Oct 2017 01:51:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.43,360,1503385200"; d="scan'208";a="908821068" Received: from irsmsx109.ger.corp.intel.com ([163.33.3.23]) by FMSMGA003.fm.intel.com with ESMTP; 11 Oct 2017 01:51:20 -0700 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.49]) by IRSMSX109.ger.corp.intel.com ([169.254.13.28]) with mapi id 14.03.0319.002; Wed, 11 Oct 2017 09:51:19 +0100 From: "Singh, Jasvinder" To: "Pei, Yulong" , "dev@dpdk.org" CC: "Dumitrescu, Cristian" , "Wu, Jingjing" , "De Lara Guarch, Pablo" Thread-Topic: [dpdk-dev] [PATCH v6 3/3] app/test-pmd: add CLI for TM nodes and hierarchy commit Thread-Index: AQHTQTBHyQppeyabQ0KOuV6laqdTwaLeRg4AgAASaRA= Date: Wed, 11 Oct 2017 08:51:18 +0000 Message-ID: <54CBAA185211B4429112C315DA58FF6D3326A3FC@IRSMSX103.ger.corp.intel.com> References: <20170929123829.81964-1-jasvinder.singh@intel.com> <20171009190750.6697-1-jasvinder.singh@intel.com> <20171009190750.6697-3-jasvinder.singh@intel.com> <188971FCDA171749BED5DA74ABF3E6F03C0E14DF@SHSMSX104.ccr.corp.intel.com> In-Reply-To: <188971FCDA171749BED5DA74ABF3E6F03C0E14DF@SHSMSX104.ccr.corp.intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYzBlNjVmMGEtY2VkMy00ZDcxLWFlYzgtMDk1YTVkOWQ2MDZhIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6ImVUUUMxWFJNeW9CUjBCUXBBakFPOXpEUnBLSm1IM3VpaHV1T21EUjkxRXc9In0= x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v6 3/3] app/test-pmd: add CLI for TM nodes and hierarchy commit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Oct 2017 08:51:23 -0000 > app/test-pmd/cmdline.c | 27 +++ > app/test-pmd/cmdline_tm.c | 526 > ++++++++++++++++++++++++++++++++++++++++++++++ > app/test-pmd/cmdline_tm.h | 5 + > 3 files changed, 558 insertions(+) >=20 > diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index > d89583c..c6b35ba 100644 > --- a/app/test-pmd/cmdline.c > +++ b/app/test-pmd/cmdline.c > @@ -683,6 +683,28 @@ static void cmd_help_long_parsed(void > *parsed_result, > "del port tm node wred profile (port_id) > (wred_profile_id)\n" > " Delete port tm node wred profile.\n\n" >=20 > + "add port tm nonleaf node (port_id) (node_id) > (parent_node_id)" > + " (priority) (weight) (level_id) (shaper_profile_id)" > + " (shared_shaper_id) (n_shared_shapers) > (n_sp_priorities)" > + " (stats_mask)\n" > + " Add port tm nonleaf node.\n\n" > + > + "add port tm leaf node (port_id) (node_id) > (parent_node_id)" > + " (priority) (weight) (level_id) (shaper_profile_id)" > + " (shared_shaper_id) (n_shared_shapers) > (n_sp_priorities)" > + " (cman_mode) (wred_profile_id) (stats_mask)\n" > + " Add port tm leaf node.\n\n" > + >=20 > For leaf node , it should not have "n_sp_priorities" parameter. >=20 Forgot to edit here in help. Thanks. Will fix in the next version.