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 A7DC7DE0 for ; Mon, 4 Sep 2017 15:08:03 +0200 (CEST) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga105.jf.intel.com with ESMTP; 04 Sep 2017 06:08:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,474,1498546800"; d="scan'208";a="145290372" Received: from irsmsx105.ger.corp.intel.com ([163.33.3.28]) by orsmga005.jf.intel.com with ESMTP; 04 Sep 2017 06:08:01 -0700 Received: from irsmsx101.ger.corp.intel.com ([169.254.1.22]) by irsmsx105.ger.corp.intel.com ([169.254.7.75]) with mapi id 14.03.0319.002; Mon, 4 Sep 2017 14:08:01 +0100 From: "Zhang, Roy Fan" To: "De Lara Guarch, Pablo" CC: "dev@dpdk.org" , "Zhang, Roy Fan" Thread-Topic: [dpdk-dev] [PATCH 0/6] Crypto-perf app improvements Thread-Index: AQHTGDv2xG67dfZVZ0GBzt9qwUjQiaKkzP0w Date: Mon, 4 Sep 2017 13:08:00 +0000 Message-ID: <9F7182E3F746AB4EA17801C148F3C60433038657@IRSMSX101.ger.corp.intel.com> References: <20170818080520.43088-1-pablo.de.lara.guarch@intel.com> In-Reply-To: <20170818080520.43088-1-pablo.de.lara.guarch@intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMzZiNjEwMzUtNThiYy00MTU5LWE4MjgtNmFkYWE5MWM2ODdhIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6ImpsVUpZM2ZLb3F4K2x3Vm4reE91dWR4QUlhZFVPU2FLUWFuOUErM1dONTA9In0= 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 0/6] Crypto-perf app improvements 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: Mon, 04 Sep 2017 13:08:04 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Pablo de Lara > Sent: Friday, August 18, 2017 9:05 AM > To: Doherty, Declan ; Trahe, Fiona > ; Jain, Deepak K ; Griffi= n, > John ; jerin.jacob@caviumnetworks.com; > akhil.goyal@nxp.com; hemant.agrawal@nxp.com > Cc: dev@dpdk.org; De Lara Guarch, Pablo > Subject: [dpdk-dev] [PATCH 0/6] Crypto-perf app improvements >=20 > This patchset includes some improvements in the Crypto performance > application. >=20 > The last patch, in particular, introduces performance improvements. > Currently, crypto operations are allocated in a mempool and mbufs in a > different one. > Since crypto operations and mbufs are mapped 1:1, the can share the same > mempool object (similar to having the mbuf in the private data of the cry= pto > operation). > This improves performance, as it is only required to handle a single memp= ool, > improving cache usage. >=20 > Pablo de Lara (6): > app/crypto-perf: set AAD after the crypto operation > app/crypto-perf: parse AEAD data from vectors > app/crypto-perf: parse segment size > app/crypto-perf: overwrite mbuf when verifying > app/crypto-perf: do not populate the mbufs at init > app/crypto-perf: use single mempool >=20 > app/test-crypto-perf/cperf_ops.c | 136 ++++++-- > app/test-crypto-perf/cperf_ops.h | 2 +- > app/test-crypto-perf/cperf_options.h | 4 +- > app/test-crypto-perf/cperf_options_parsing.c | 45 +-- > app/test-crypto-perf/cperf_test_latency.c | 365 ++++++++++-------= ----- > app/test-crypto-perf/cperf_test_throughput.c | 361 ++++++++++-------= --- > - > app/test-crypto-perf/cperf_test_vector_parsing.c | 55 ++++ > app/test-crypto-perf/cperf_test_verify.c | 382 +++++++++++------= ------ > doc/guides/tools/cryptoperf.rst | 6 +- > 9 files changed, 717 insertions(+), 639 deletions(-) >=20 > -- > 2.9.4 Series-Acked-by: Fan Zhang