From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 48A57A2EEB for ; Fri, 13 Sep 2019 13:03:44 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1CDD71F091; Fri, 13 Sep 2019 13:03:44 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id EC6321F05F; Fri, 13 Sep 2019 13:03:39 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Sep 2019 04:03:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,500,1559545200"; d="scan'208";a="210315210" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by fmsmga004.fm.intel.com with ESMTP; 13 Sep 2019 04:03:38 -0700 Received: from fmsmsx158.amr.corp.intel.com (10.18.116.75) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.439.0; Fri, 13 Sep 2019 04:03:38 -0700 Received: from hasmsx114.ger.corp.intel.com (10.184.198.65) by fmsmsx158.amr.corp.intel.com (10.18.116.75) with Microsoft SMTP Server (TLS) id 14.3.439.0; Fri, 13 Sep 2019 04:03:38 -0700 Received: from HASMSX109.ger.corp.intel.com ([169.254.3.38]) by HASMSX114.ger.corp.intel.com ([169.254.14.116]) with mapi id 14.03.0439.000; Fri, 13 Sep 2019 14:03:35 +0300 From: "Kusztal, ArkadiuszX" To: "Trahe, Fiona" , "dev@dpdk.org" CC: "akhil.goyal@nxp.com" , "stable@dpdk.org" Thread-Topic: [PATCH] crypto/qat: fix digest length in XCBC capability Thread-Index: AQHVZ/VYiNv2i7lij0ajPmfPTOFUz6cpdcPQ Date: Fri, 13 Sep 2019 11:03:35 +0000 Message-ID: <06EE24DD0B19E248B53F6DC8657831551B29999D@hasmsx109.ger.corp.intel.com> References: <1568133130-18757-1-git-send-email-fiona.trahe@intel.com> In-Reply-To: <1568133130-18757-1-git-send-email-fiona.trahe@intel.com> Accept-Language: pl-PL, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.184.70.10] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-stable] [PATCH] crypto/qat: fix digest length in XCBC capability X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" > -----Original Message----- > From: Trahe, Fiona > Sent: Tuesday, September 10, 2019 6:32 PM > To: dev@dpdk.org > Cc: akhil.goyal@nxp.com; Trahe, Fiona ; Kusztal, > ArkadiuszX ; stable@dpdk.org > Subject: [PATCH] crypto/qat: fix digest length in XCBC capability >=20 > Digest length in RTE_CRYPTO_AUTH_AES_XCBC_MAC capability was > incorrectly marked 16 bytes, should be 12. >=20 > Fixes: 6a3c87bc6a6c ("crypto/qat: refactor capabilities infrastructure") > cc: stable@dpdk.org >=20 > Signed-off-by: Fiona Trahe > --- > drivers/crypto/qat/qat_sym_capabilities.h | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/drivers/crypto/qat/qat_sym_capabilities.h > b/drivers/crypto/qat/qat_sym_capabilities.h > index 6df12b9..a7fb6a0 100644 > --- a/drivers/crypto/qat/qat_sym_capabilities.h > +++ b/drivers/crypto/qat/qat_sym_capabilities.h > @@ -145,8 +145,8 @@ > .increment =3D 0 \ > }, \ > .digest_size =3D { \ > - .min =3D 16, \ > - .max =3D 16, \ > + .min =3D 12, \ > + .max =3D 12, \ > .increment =3D 0 \ > }, \ > .aad_size =3D { 0 }, \ > -- > 1.7.0.7 Acked-by: Arek Kusztal