From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 21B8B1B483 for ; Wed, 9 Jan 2019 23:09:17 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Jan 2019 14:09:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,459,1539673200"; d="scan'208";a="116873570" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by orsmga003.jf.intel.com with ESMTP; 09 Jan 2019 14:09:15 -0800 Received: from irsmsx112.ger.corp.intel.com ([169.254.1.84]) by IRSMSX106.ger.corp.intel.com ([169.254.8.161]) with mapi id 14.03.0415.000; Wed, 9 Jan 2019 22:09:14 +0000 From: "De Lara Guarch, Pablo" To: "Zhang, Roy Fan" , "dev@dpdk.org" CC: "akhil.goyal@nxp.com" Thread-Topic: [PATCH v4 0/3] use architecure independent macros Thread-Index: AQHUmFsf9l6Br+HjykmR71LKa/cch6Wnnw+Q Date: Wed, 9 Jan 2019 22:09:13 +0000 Message-ID: References: <20181219201609.37934-1-roy.fan.zhang@intel.com> <20181220115645.37584-1-roy.fan.zhang@intel.com> In-Reply-To: <20181220115645.37584-1-roy.fan.zhang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZmI3Y2I0ZDktYzc1MC00YTM2LWEyYjItNWZhMjlhZDQ2ZmU2IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiU2dGZEhGNnpVMTdad09yVis3bDZIdlFQVGtNbURnVFVQRHRpcTJcL0c5T0JySFlEMURrSDJWKyttcXo1R1JcL0NMIn0= x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 0/3] use architecure independent macros 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, 09 Jan 2019 22:09:18 -0000 > -----Original Message----- > From: Zhang, Roy Fan > Sent: Thursday, December 20, 2018 11:57 AM > To: dev@dpdk.org > Cc: akhil.goyal@nxp.com; De Lara Guarch, Pablo > > Subject: [PATCH v4 0/3] use architecure independent macros >=20 > This patch updates the aesni_mb to use IMB_* arch independent macros to > reduce the code size and future maintaining effort. >=20 > In intel-ipsec-mb library 0.52 all supported algorithms now have the IMB_= * > arch independent macros enabled. The macros help reducing the > application's code size and remove the burden of maintaining the support = to > different architectures such as SSE and AVX*, etc. >=20 > This patch adds this support into AESNI-MB PMD. Meanwhile to keep > supporting the older version of intel-ipsec-mb library, the existing > rte_aesni_mb_pmd*.c are renamed to rte_aesni_mb_pmd*_compat.c and > the compiler will check the version number in /usr/include/inte-ipsec-mb.= h > and decides which files to be compiled. For intel-ipsec-mb library 0.52 t= he > rte_aesni_mb_pmd*.c will be compiled. For the older version > rte_aesni_mb_pmd*_compat.c will be compiled. >=20 > It is planned to change the minimum intel-ipsec-mb support version to 0.5= 2 > in DPDK 19.05 release. By then all code intended for supporting older ver= sion > will be removed, including rte_aesni_mb_pmd*_compat.c. >=20 > Acked-by: Damian Nowak Series applied to dpdk-next-crypto. Thanks, Pablo