From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 71E92A0C41; Thu, 30 Sep 2021 11:51:36 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 00DFE40DDA; Thu, 30 Sep 2021 11:51:36 +0200 (CEST) Received: from mail-108-mta219.mxroute.com (mail-108-mta219.mxroute.com [136.175.108.219]) by mails.dpdk.org (Postfix) with ESMTP id EDDBD40DDA for ; Thu, 30 Sep 2021 11:51:33 +0200 (CEST) Received: from filter004.mxroute.com ([149.28.56.236] filter004.mxroute.com) (Authenticated sender: mN4UYu2MZsgR) by mail-108-mta219.mxroute.com (ZoneMTA) with ESMTPSA id 17c361db25a0008545.001 for (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256); Thu, 30 Sep 2021 09:51:28 +0000 X-Zone-Loop: 76591c534054806a23ce7ccbb8762d0ed368ca0b1575 X-Originating-IP: [149.28.56.236] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ashroe.eu; s=x; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date: Message-ID:From:References:Cc:To:Subject:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=VU2AWcH3cQi2hO8nBQSGSMfUMrHm000eMAdn+qwOx/o=; b=I/GD+BM5x1ciEyegX9bV9L+6bD 8f8Jyoe3KXVNG7Vmt1WtZUEaQAXXNl9D0Qip7sV64QgXHs0SvZKvXxoXBGvbaY0lK3reLf+d3t8jd YZtoEq3vBWrIKPa+z+SqwNh2LTlxY8ED/Q3eZdrAxrAuZsMQgxxiD0+FdYbdpZRUO4yeIxzJeJ9GR JKPNC0OE/ayNPYmtfRJdlvMMIjTMT4N4jTPEG9cndSDERIfGY9K4IFhi8sT0sKj2hDKALIB+RncWz 8/4cUmPUdzvCAdVI/kOGbef2ZUEY/tLbf1gFblAxKhe1jT8ZaPasvP57D3gfLSga07bG1T9vddI34 fqFI2g3w==; To: Ciara Power , dev@dpdk.org Cc: roy.fan.zhang@intel.com, piotrx.bronowski@intel.com, gakhil@marvell.com, Thomas Monjalon , Pablo de Lara References: <20210727083832.291687-1-roy.fan.zhang@intel.com> <20210929163035.608387-1-ciara.power@intel.com> <20210929163035.608387-2-ciara.power@intel.com> From: "Kinsella, Ray" Message-ID: Date: Thu, 30 Sep 2021 10:51:21 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <20210929163035.608387-2-ciara.power@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-AuthUser: mdr@ashroe.eu Subject: Re: [dpdk-dev] [PATCH v3 01/10] drivers/crypto: introduce IPsec-mb framework X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list 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 29/09/2021 17:30, Ciara Power wrote: > From: Fan Zhang > > This patch introduces the new framework to share common code between > the SW crypto PMDs that depend on the intel-ipsec-mb library. > This change helps to reduce future effort on the code maintenance and > feature updates. > > The PMDs that will be added to this framework in subsequent patches are: > - AESNI MB > - AESNI GCM > - KASUMI > - SNOW3G > - ZUC > > The use of these PMDs will not change, they will still be supported for > x86, and will use the same EAL args as before. > > The minimum required version for the intel-ipsec-mb library is now v1.0. > > Signed-off-by: Fan Zhang > Signed-off-by: Ciara Power > > --- > v3: > - Updated intel-ipsec-mb macros. > - Added use of auto init function for IMB_MGR. > - Added detail to commit log. > v2: > - Added qp NULL check in get stats function. > - Added maintainers file entry. > - Replaced strlcpy with rte_strlcpy. > --- Acked-by: Ray Kinsella (for the series).