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 18B14A0350 for ; Fri, 26 Jun 2020 13:26:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B86461BECC; Fri, 26 Jun 2020 13:26:38 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 873651BECC; Fri, 26 Jun 2020 13:26:36 +0200 (CEST) IronPort-SDR: zuSL1uWuW0Oh3CwRO9I3iOShjBnNBPYt16kgJyNIdL7IshuQDzPvytiJdS24lRmjNec8Gm9lLC IgqsneLcAVSw== X-IronPort-AV: E=McAfee;i="6000,8403,9663"; a="124942412" X-IronPort-AV: E=Sophos;i="5.75,283,1589266800"; d="scan'208";a="124942412" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Jun 2020 04:26:35 -0700 IronPort-SDR: JLZqvErhfjqzNp1INfSOdLTr173Ysbgb4BkuE9jUL4ylQvgSTwOyGhpnr7in4wQpwucSn4Nmma 8M+FY4/PJXKA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,283,1589266800"; d="scan'208";a="294174895" Received: from adamdybx-mobl.ger.corp.intel.com ([10.104.121.13]) by orsmga002.jf.intel.com with ESMTP; 26 Jun 2020 04:26:33 -0700 From: Adam Dybkowski To: dev@dpdk.org, fiona.trahe@intel.com, akhil.goyal@nxp.com Cc: Adam Dybkowski , stable@dpdk.org Date: Fri, 26 Jun 2020 13:23:42 +0200 Message-Id: <20200626112342.2753-1-adamx.dybkowski@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH] crypto/qat: fix AES-XTS capabilities 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" This patch fixes the increment field of the AES-XTS cipher key size. Fixes: 7d5ef3bb32cd ("crypto/qat: support XTS") Cc: stable@dpdk.org Signed-off-by: Adam Dybkowski --- drivers/crypto/qat/qat_sym_capabilities.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/qat/qat_sym_capabilities.h b/drivers/crypto/qat/qat_sym_capabilities.h index ff691ce35..d426d9ac2 100644 --- a/drivers/crypto/qat/qat_sym_capabilities.h +++ b/drivers/crypto/qat/qat_sym_capabilities.h @@ -419,7 +419,7 @@ .key_size = { \ .min = 32, \ .max = 64, \ - .increment = 0 \ + .increment = 32 \ }, \ .iv_size = { \ .min = 16, \ -- 2.25.1