From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 60B731B546 for ; Fri, 23 Nov 2018 14:29:27 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Nov 2018 05:29:26 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,269,1539673200"; d="scan'208";a="107084394" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by fmsmga002.fm.intel.com with ESMTP; 23 Nov 2018 05:29:26 -0800 Received: from bgsmsx153.gar.corp.intel.com (10.224.23.4) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.408.0; Fri, 23 Nov 2018 05:29:25 -0800 Received: from bgsmsx101.gar.corp.intel.com ([169.254.1.234]) by BGSMSX153.gar.corp.intel.com ([169.254.2.159]) with mapi id 14.03.0415.000; Fri, 23 Nov 2018 18:59:23 +0530 From: "Varghese, Vipin" To: "Pattan, Reshma" , "dev@dpdk.org" , "thomas@monjalon.net" , "stephen@networkplumber.org" , "Mcnamara, John" CC: "Byrne, Stephen1" , "Glynn, Michael J" , "Patel, Amol" Thread-Topic: [PATCH v4 5/9] app/procinfo: add support for show tm Thread-Index: AQHUdc+zPfVf/p7zD0i8dNfiuPEpQaVaBQMAgAHdNJCAARuHAIAAdxGA Date: Fri, 23 Nov 2018 13:29:22 +0000 Message-ID: <4C9E0AB70F954A408CC4ADDBF0F8FA7D4D2C1A45@BGSMSX101.gar.corp.intel.com> References: <20181106124912.40700-1-vipin.varghese@intel.com> <20181106124912.40700-5-vipin.varghese@intel.com> <3AEA2BF9852C6F48A459DA490692831F2A3D58A3@irsmsx110.ger.corp.intel.com> <4C9E0AB70F954A408CC4ADDBF0F8FA7D4D2C1435@BGSMSX101.gar.corp.intel.com> <3AEA2BF9852C6F48A459DA490692831F2A3D61A6@irsmsx110.ger.corp.intel.com> In-Reply-To: <3AEA2BF9852C6F48A459DA490692831F2A3D61A6@irsmsx110.ger.corp.intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiY2Q5MmRlYjMtMDM5OS00M2FmLWI2MmEtNDRiNjg5OWU3OWI4IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoidjVPTDVwN1NhYVAzRzB1QUQxYUZPVWk1V21aejhVQUxJWXd1QlJnWWVcL2RlU1VRcGZTZVpJTDFYSXdacXF0T1cifQ== dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [10.223.10.10] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 5/9] app/procinfo: add support for show tm 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: Fri, 23 Nov 2018 13:29:28 -0000 > -----Original Message----- > From: Pattan, Reshma > Sent: Friday, November 23, 2018 5:21 PM > To: Varghese, Vipin ; dev@dpdk.org; > thomas@monjalon.net; stephen@networkplumber.org; Mcnamara, John > > Cc: Byrne, Stephen1 ; Glynn, Michael J > ; Patel, Amol > Subject: RE: [PATCH v4 5/9] app/procinfo: add support for show tm >=20 >=20 >=20 > > -----Original Message----- > > From: Varghese, Vipin > > Sent: Thursday, November 22, 2018 1:28 PM > > To: Pattan, Reshma ; dev@dpdk.org; > > thomas@monjalon.net; stephen@networkplumber.org; Mcnamara, John > > > > Cc: Byrne, Stephen1 ; Glynn, Michael J > > ; Patel, Amol > > Subject: RE: [PATCH v4 5/9] app/procinfo: add support for show tm > > > > Hi Reshma, > > > > > > > > > > > > > + if ((ret) | (!is_leaf)) > > > > + > > > > > > Is the operator here should be || ? > > > > > > > > > > Check is done for 'if either ret is not 0 or if it ret is 0 but not > > leaf' we skip leaf details print. If 'ret is 0 and is leaf' we skip con= tinue to print > leaf details. >=20 > IMO, using logical operator over bitwise operator is good here in if stat= ement . > Like below.? >=20 > If (ret || (is_leaf =3D=3D 0 )) Thanks for the information, if the logic is correct do I need to change for= v6 =09