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 80A6029C7 for ; Fri, 11 Mar 2016 01:24:33 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 10 Mar 2016 16:24:32 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,318,1455004800"; d="scan'208";a="907526280" Received: from irsmsx109.ger.corp.intel.com ([163.33.3.23]) by orsmga001.jf.intel.com with ESMTP; 10 Mar 2016 16:24:31 -0800 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.13]) by IRSMSX109.ger.corp.intel.com ([169.254.13.174]) with mapi id 14.03.0248.002; Fri, 11 Mar 2016 00:24:30 +0000 From: "De Lara Guarch, Pablo" To: Thomas Monjalon , "Griffin, John" Thread-Topic: [dpdk-dev] [PATCH 3/3] qat: fixes premature addition of AES_CMAC in session creation Thread-Index: AQHReyuT3kVX8hRBaUGUhPzjtYoS0p9TYhiQ Date: Fri, 11 Mar 2016 00:24:30 +0000 Message-ID: References: <1457454137-22315-1-git-send-email-john.griffin@intel.com> <1457454137-22315-4-git-send-email-john.griffin@intel.com> <2207806.zJzxy8f5VI@xps13> In-Reply-To: <2207806.zJzxy8f5VI@xps13> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNGI4ZjY3NmEtOWExYy00OTQ0LWExN2UtY2JiM2JlNzYxZGIyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IkFyXC9ERTliQnk1N0FFWDFKamlcL0xkWEJQR1dlcGZ2dENqanU0ZFFZN1NYbz0ifQ== x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH 3/3] qat: fixes premature addition of AES_CMAC in session creation 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: Fri, 11 Mar 2016 00:24:33 -0000 > -----Original Message----- > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > Sent: Friday, March 11, 2016 12:17 AM > To: Griffin, John > Cc: dev@dpdk.org; De Lara Guarch, Pablo > Subject: Re: [dpdk-dev] [PATCH 3/3] qat: fixes premature addition of > AES_CMAC in session creation >=20 > 2016-03-08 16:22, John Griffin: > > Remove support for AES CMAC support for which was added to > > the code in error. AES CMAC will be added in a subsequent release > > when testing completes. > [...] > > case RTE_CRYPTO_AUTH_AES_GCM: > > - case RTE_CRYPTO_AUTH_AES_GMAC: >=20 > CMAC or GMAC? It is AES_GMAC, I commented that title was wrong. >=20 > > session->qat_hash_alg =3D > ICP_QAT_HW_AUTH_ALGO_GALOIS_128; > > break; > > case RTE_CRYPTO_AUTH_SNOW3G_UIA2: > > @@ -312,6 +311,7 @@ qat_crypto_sym_configure_session_auth(struct > rte_cryptodev *dev, > > case RTE_CRYPTO_AUTH_MD5: > > case RTE_CRYPTO_AUTH_MD5_HMAC: > > case RTE_CRYPTO_AUTH_AES_CCM: > > + case RTE_CRYPTO_AUTH_AES_GMAC: >=20 > So it is added? What should we have later?