From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH v4 1/7] lib: add cryptodev type for the upcoming ARMv8 PMD Date: Wed, 18 Jan 2017 07:54:31 +0530 Message-ID: <20170118022430.GA2951@localhost.localdomain> References: <1483551207-18236-4-git-send-email-zbigniew.bodek@caviumnetworks.com> <1484668143-32522-1-git-send-email-zbigniew.bodek@caviumnetworks.com> <1484668143-32522-2-git-send-email-zbigniew.bodek@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: , , , , To: Return-path: Received: from NAM02-BL2-obe.outbound.protection.outlook.com (mail-bl2nam02on0056.outbound.protection.outlook.com [104.47.38.56]) by dpdk.org (Postfix) with ESMTP id F050D108F for ; Wed, 18 Jan 2017 03:24:52 +0100 (CET) Content-Disposition: inline In-Reply-To: <1484668143-32522-2-git-send-email-zbigniew.bodek@caviumnetworks.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, Jan 17, 2017 at 04:48:57PM +0100, zbigniew.bodek@caviumnetworks.com wrote: > From: Zbigniew Bodek Please change the commit subject to cryptodev: add cryptodev type for the ARMv8 PMD from lib: add cryptodev type for the upcoming ARMv8 PMD > > Add type and name for ARMv8 crypto PMD > > Signed-off-by: Zbigniew Bodek > Reviewed-by: Jerin Jacob > --- > lib/librte_cryptodev/rte_cryptodev.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/lib/librte_cryptodev/rte_cryptodev.h b/lib/librte_cryptodev/rte_cryptodev.h > index 29d8eec..b370c2f 100644 > --- a/lib/librte_cryptodev/rte_cryptodev.h > +++ b/lib/librte_cryptodev/rte_cryptodev.h > @@ -66,6 +66,8 @@ > /**< KASUMI PMD device name */ > #define CRYPTODEV_NAME_ZUC_PMD crypto_zuc > /**< KASUMI PMD device name */ > +#define CRYPTODEV_NAME_ARMV8_PMD crypto_armv8 > +/**< ARMv8 Crypto PMD device name */ > > /** Crypto device type */ > enum rte_cryptodev_type { > @@ -77,6 +79,7 @@ enum rte_cryptodev_type { > RTE_CRYPTODEV_KASUMI_PMD, /**< KASUMI PMD */ > RTE_CRYPTODEV_ZUC_PMD, /**< ZUC PMD */ > RTE_CRYPTODEV_OPENSSL_PMD, /**< OpenSSL PMD */ > + RTE_CRYPTODEV_ARMV8_PMD, /**< ARMv8 crypto PMD */ > }; > > extern const char **rte_cyptodev_names; > -- > 1.9.1 >