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 07E29A0588; Thu, 16 Apr 2020 10:31:12 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3A0781DB04; Thu, 16 Apr 2020 10:31:12 +0200 (CEST) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id AF99C1DB03 for ; Thu, 16 Apr 2020 10:31:10 +0200 (CEST) Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id 276BD5C02A0; Thu, 16 Apr 2020 04:31:10 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute7.internal (MEProxy); Thu, 16 Apr 2020 04:31:10 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=ItF+eyx2jpgAOcFWF2II2Hl4w/WAUfEhgvb/9PyJBVY=; b=gLN8Te9ZYeEC i/hJuKapj7P37uO5nhuHGNRe8V0USvzX5EgQUFmx8/aAXJgxH8G6LbtZ54Z1ZcGZ 78KNib18DrAoo4vASNBYb3h87IHTbmj3Qswmc7PxHj3Aaz/lpMSA85Zhp1IgrNUL A3our22Fxa9qqmBFY3OOc8PKW2sbVPg= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=ItF+eyx2jpgAOcFWF2II2Hl4w/WAUfEhgvb/9PyJB VY=; b=o/PJiC1Nb8XZvTsIsk+39LdiECSOu9Ks1SAdLcWuTyfU8dbhzK6XRttQN 4bbeC7QtJkQsHSUQVAa6+abeB9dS76ajqynNfbHE8EuA2l5bddC9vp3Y2l02oB9I 0Eu1tIV6dx+0CE+eHQGHMc1L37cvwfqoOf4xjnuVCSQvEMCbRFGz64ExWUfECgNp ZLWaPxGNzyXUn4I78j0/QLyyWaYLJ95GatT8ywJVB01xiMVx/6hPt4q13qsmQlyL p88v6wRAQJb1ydr/x8ZClAoyUKFrEs1OuVSOJxYyg9vGxOv+X3OBHAVkFmTqC4xy zQ0/48ruxyddzqd/U9FuiOTHhIU3Q== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduhedrfeehgddthecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecuvehluhhsthgvrhfuihiivgeptdenucfrrghr rghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvth X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id DDB22328005E; Thu, 16 Apr 2020 04:31:08 -0400 (EDT) From: Thomas Monjalon To: Ray Kinsella , Akhil Goyal Cc: Arek Kusztal , "dev@dpdk.org" , "fiona.trahe@intel.com" , "bruce.richardson@intel.com" Date: Thu, 16 Apr 2020 10:31:04 +0200 Message-ID: <3446856.KiezcSG77Q@thomas> In-Reply-To: References: <20200416081232.6024-1-arkadiuszx.kusztal@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2] cryptodev: version rte_cryptodev_info_get function X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" 16/04/2020 10:18, Akhil Goyal: > ++Ray and Thomas for review on ABI Akhil, please work with Ray to understand what needs to be checked in general for ABI. We need you to maintain ABI in crypto area. First step: run the new ABI checking tool. > > This patch adds versioned function rte_cryptodev_info_get. > > Node 20.0.2 function works the same way it was working before. > > Node 20.0 function strips capability added in 20.05 release > > to prevent some issues with ABI policy. To do that new capability > > array is allocated per device and returned to user instead of the > > original array passed by PMD. > > Because rte_cryptodev_info_get is called by other API functions, > > rte_cryptodev_sym_capability_get function was versioned the same way. > > > > Signed-off-by: Arek Kusztal > > --- > > > > This patch depends on following patches: > > > > [1] - "[v3] cryptodev: add chacha20-poly1305 aead algorithm"