From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id CDFD6376E for ; Fri, 11 Mar 2016 01:18:35 +0100 (CET) Received: by mail-wm0-f49.google.com with SMTP id l68so8700159wml.0 for ; Thu, 10 Mar 2016 16:18:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=fM64moxYjihutyCFE5Or6tJug/dnn1wOovPqM7h7R8c=; b=vVsZOIp8vxviVZOVGGzYLCJpFyiTHKgDnkZDO0wKfSSBKI/q4HEyx5jwj/gNksAAIy 6XTBj66EHQmBxR4RRiAgo1JbkgcWlk/yD6rn4SSfmmloFJQTrI3HG+XwreqCD678vDjb uQ24a/f3/PxDuPftSsF+85PwfyfRgCHOSFzqfVZaT8G70mtoLJF305SKqGUzyWBFwGPr b5u6QgRMsFJsqlrAT88lyYkyisxl6Nzg6ClVHQt0Vxhd/fK3AYZ9qSLgv/GSVVf+5IPQ mybsNs9kH5o8ADi4Sza9PoZbLCBue4n0Npjwrs1fDT8skecec01GKQmth6I/4GW3Q3rt 85Ug== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding; bh=fM64moxYjihutyCFE5Or6tJug/dnn1wOovPqM7h7R8c=; b=jOEy7Wx6sJ/yI9MCtFJhnnL/LPRy/ff4Tukx5BIied9yeybv0mM3HsY20IVlEZjD1t Yh/Tv6e/zSqfdU2kn3/duegmNtlwt2+vlK766WMHxy7emSyPmAmruHo0WUX5RYMC74tB Xjtv6yq/ZTAfsIDj0fHQLdjHVNnSiszZ5HXPsbo1lRMODifBpv432xcU0Ie4RroxYqgN cpv7PjdxcWxIOPasrHmUN0G8sByImRvWd8EFBD7oqhCvf3EVqVdi/ixNssU0x1ZoG5Ih oAw1ggWplbufUSA9pND5hpLVae5nCj88pusytJaH5eQKlanKNWQldubZB1gds3aYXd3C Tmrg== X-Gm-Message-State: AD7BkJJpcfvkBCccPx++h8B5zIVJcn0/yrZCrBnvuHMKiTBBjpcwyLxXmFU3EfwFojU4V1vP X-Received: by 10.194.172.3 with SMTP id ay3mr6746564wjc.155.1457655515708; Thu, 10 Mar 2016 16:18:35 -0800 (PST) Received: from xps13.localnet (91.111.75.86.rev.sfr.net. [86.75.111.91]) by smtp.gmail.com with ESMTPSA id t3sm5873041wjz.11.2016.03.10.16.18.34 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Mar 2016 16:18:34 -0800 (PST) From: Thomas Monjalon To: John Griffin Date: Fri, 11 Mar 2016 01:16:52 +0100 Message-ID: <2207806.zJzxy8f5VI@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1457454137-22315-4-git-send-email-john.griffin@intel.com> References: <1457454137-22315-1-git-send-email-john.griffin@intel.com> <1457454137-22315-4-git-send-email-john.griffin@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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:18:36 -0000 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: CMAC or GMAC? > session->qat_hash_alg = 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: So it is added? What should we have later?