From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 32DF01C52 for ; Tue, 11 Oct 2016 02:38:16 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP; 10 Oct 2016 17:38:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,327,1473145200"; d="scan'208";a="1063046918" Received: from irsmsx151.ger.corp.intel.com ([163.33.192.59]) by orsmga002.jf.intel.com with ESMTP; 10 Oct 2016 17:38:14 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.164]) by IRSMSX151.ger.corp.intel.com ([169.254.4.226]) with mapi id 14.03.0248.002; Tue, 11 Oct 2016 01:38:13 +0100 From: "De Lara Guarch, Pablo" To: "De Lara Guarch, Pablo" , "Kerlin, MarcinX" , "dev@dpdk.org" CC: "Jastrzebski, MichalX K" Thread-Topic: [dpdk-dev] [PATCH 1/1] fix the number of operations in libcrypto test Thread-Index: AQHSI1ZSW0HATs5usEKE87H0GIty7aCiaI3A Date: Tue, 11 Oct 2016 00:38:13 +0000 Message-ID: References: <1476086870-10538-1-git-send-email-marcinx.kerlin@intel.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYWJmM2ZiN2ItZDIzYy00YzBjLWJhNTktZDY4Njk0YmM2Zjg0IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IjZOTHU5T0tnb0Z0cUN3TnExc05RSmNiYWdnQmJWN2diMTRjSWtERzVIMW89In0= x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 1/1] fix the number of operations in libcrypto test X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Oct 2016 00:38:16 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of De Lara Guarch, > Pablo > Sent: Monday, October 10, 2016 5:27 PM > To: Kerlin, MarcinX; dev@dpdk.org > Cc: Jastrzebski, MichalX K > Subject: Re: [dpdk-dev] [PATCH 1/1] fix the number of operations in libcr= ypto > test >=20 >=20 >=20 > > -----Original Message----- > > From: Kerlin, MarcinX > > Sent: Monday, October 10, 2016 1:08 AM > > To: dev@dpdk.org > > Cc: De Lara Guarch, Pablo; Jastrzebski, MichalX K; Kerlin, MarcinX > > Subject: [PATCH 1/1] fix the number of operations in libcrypto test > > > > This patch reduce the number of total operations from 1M to 10K, becaus= e > > test is taking too long time now. > > > > Fixes: ffbe3be0d4b5 ("app/test: add libcrypto") > > > > Signed-off-by: Marcin Kerlin > > --- > > app/test/test_cryptodev_perf.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/app/test/test_cryptodev_perf.c > b/app/test/test_cryptodev_perf.c > > index 4aee9af..43a7166 100644 > > --- a/app/test/test_cryptodev_perf.c > > +++ b/app/test/test_cryptodev_perf.c > > @@ -3420,7 +3420,7 @@ test_perf_snow3G_vary_pkt_size(void) > > static int > > test_perf_libcrypto_vary_pkt_size(void) > > { > > - unsigned int total_operations =3D 1000000; > > + unsigned int total_operations =3D 10000; > > unsigned int burst_size =3D { 64 }; > > unsigned int buf_lengths[] =3D { 64, 128, 256, 512, 768, 1024, 1280, > > 1536, > > 1792, 2048 }; > > -- > > 1.9.1 >=20 > Acked-by: Pablo de Lara >=20 > Will change the title, as it is missing the category (app/test: ) Applied to dpdk-next-crypto. Thanks, Pablo