From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 6A8BC6CB4 for ; Tue, 11 Oct 2016 02:27:33 +0200 (CEST) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga105.fm.intel.com with ESMTP; 10 Oct 2016 17:27:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,327,1473145200"; d="scan'208";a="18290868" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by orsmga005.jf.intel.com with ESMTP; 10 Oct 2016 17:27:31 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.164]) by IRSMSX101.ger.corp.intel.com ([163.33.3.153]) with mapi id 14.03.0248.002; Tue, 11 Oct 2016 01:27:30 +0100 From: "De Lara Guarch, Pablo" To: "Kerlin, MarcinX" , "dev@dpdk.org" CC: "Jastrzebski, MichalX K" Thread-Topic: [PATCH 1/1] fix the number of operations in libcrypto test Thread-Index: AQHSIs2ts3XOToIk1UaLkyQL3Amww6CiZohg Date: Tue, 11 Oct 2016 00:27:30 +0000 Message-ID: References: <1476086870-10538-1-git-send-email-marcinx.kerlin@intel.com> In-Reply-To: <1476086870-10538-1-git-send-email-marcinx.kerlin@intel.com> 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:27:33 -0000 > -----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 >=20 > This patch reduce the number of total operations from 1M to 10K, because > test is taking too long time now. >=20 > Fixes: ffbe3be0d4b5 ("app/test: add libcrypto") >=20 > Signed-off-by: Marcin Kerlin > --- > app/test/test_cryptodev_perf.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/app/test/test_cryptodev_perf.c b/app/test/test_cryptodev_per= f.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 Acked-by: Pablo de Lara Will change the title, as it is missing the category (app/test: )