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 7FCBC45AF2; Wed, 9 Oct 2024 14:52:06 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 45C454065D; Wed, 9 Oct 2024 14:52:06 +0200 (CEST) Received: from dkmailrelay1.smartsharesystems.com (smartserver.smartsharesystems.com [77.243.40.215]) by mails.dpdk.org (Postfix) with ESMTP id B12064060A for ; Wed, 9 Oct 2024 14:52:04 +0200 (CEST) Received: from smartserver.smartsharesystems.com (smartserver.smartsharesys.local [192.168.4.10]) by dkmailrelay1.smartsharesystems.com (Postfix) with ESMTP id 84C1820694; Wed, 9 Oct 2024 14:52:04 +0200 (CEST) Content-class: urn:content-classes:message Subject: RE: [PATCH] cryptodev: remove unnecessary list end MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Wed, 9 Oct 2024 14:52:03 +0200 Message-ID: <98CBD80474FA8B44BF855DF32C47DC35E9F7A9@smartserver.smartshare.dk> In-Reply-To: <20241009112445.1691366-1-gakhil@marvell.com> X-MS-Has-Attach: X-MimeOLE: Produced By Microsoft Exchange V6.5 X-MS-TNEF-Correlator: Thread-Topic: [PATCH] cryptodev: remove unnecessary list end Thread-Index: AdsaPeQqPNzKVg2jSIqlRZGPRmX44AADBZ7Q References: <20240905101438.3888274-1-gakhil@marvell.com> <20241009112445.1691366-1-gakhil@marvell.com> From: =?iso-8859-1?Q?Morten_Br=F8rup?= To: "Akhil Goyal" , Cc: , , , , , , , , , , , , , , , , , 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 > From: Akhil Goyal [mailto:gakhil@marvell.com] > Sent: Wednesday, 9 October 2024 13.25 >=20 > RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END and > RTE_CRYPTO_RSA_PADDING_TYPE_LIST_END are not used anywhere and > mostly it do not fulfil any objective. > Rather it does not allow addition of new algorithms and > new padding type as it result in ABI breakage. > Hence, these are removed. >=20 > Signed-off-by: Akhil Goyal > --- > lib/cryptodev/rte_crypto_asym.h | 3 --- > 1 file changed, 3 deletions(-) >=20 > diff --git a/lib/cryptodev/rte_crypto_asym.h > b/lib/cryptodev/rte_crypto_asym.h > index 39d3da3952..524753e2b2 100644 > --- a/lib/cryptodev/rte_crypto_asym.h > +++ b/lib/cryptodev/rte_crypto_asym.h > @@ -119,8 +119,6 @@ enum rte_crypto_asym_xform_type { > * Performs Encrypt, Decrypt, Sign and Verify. > * Refer to rte_crypto_asym_op_type. > */ > - RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END > - /**< End of list */ > }; >=20 > /** > @@ -168,7 +166,6 @@ enum rte_crypto_rsa_padding_type { > /**< RSA PKCS#1 OAEP padding scheme */ > RTE_CRYPTO_RSA_PADDING_PSS, > /**< RSA PKCS#1 PSS padding scheme */ > - RTE_CRYPTO_RSA_PADDING_TYPE_LIST_END > }; >=20 > /** > -- > 2.25.1 Acked-by: Morten Br=F8rup