From patchwork Wed Jul 29 14:46:51 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 75013 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3D07AA052B; Wed, 29 Jul 2020 16:47:35 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8F7A7E07; Wed, 29 Jul 2020 16:47:34 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 78B2EA69 for ; Wed, 29 Jul 2020 16:47:32 +0200 (CEST) IronPort-SDR: UzmtJ/nguqtEzrL+lllqladG2WW0pJaGjYi+Yem2SglP20ITYcKBU0DBHL1ijsSi/B50a0MMXp v6u7FZ78h0zQ== X-IronPort-AV: E=McAfee;i="6000,8403,9696"; a="150593236" X-IronPort-AV: E=Sophos;i="5.75,410,1589266800"; d="scan'208";a="150593236" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Jul 2020 07:47:31 -0700 IronPort-SDR: 97ueUgWGrf0znwWpKch0tcWPnM7PGqwBc2Q4isoalAFOD6RFT9jt8KTRJ0qhQ8AQue4lBGYfy/ dXADKzuj6Fng== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,410,1589266800"; d="scan'208";a="304241969" Received: from akusztax-mobl.ger.corp.intel.com ([10.104.125.76]) by orsmga002.jf.intel.com with ESMTP; 29 Jul 2020 07:47:28 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: akhil.goyal@nxp.com, fiona.trahe@intel.com, anoobj@marvell.com, shallyv@marvell.com, declan.doherty@intel.com, roy.fan.zhang@intel.com, konstantin.ananyev@intel.com, Arek Kusztal Date: Wed, 29 Jul 2020 16:46:51 +0200 Message-Id: <20200729144651.17524-1-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.19.1.windows.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] [RFC] doc: announce removal of crypto list end enumerators 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" Enumerators RTE_CRYPTO_CIPHER_LIST_END, RTE_CRYPTO_AUTH_LIST_END, RTE_CRYPTO_AEAD_LIST_END will be removed to prevent some problems that may arise when adding new algorithms. Signed-off-by: Arek Kusztal Acked-by: Bruce Richardson Acked-by: Fiona Trahe Acked-by: Akhil Goyal --- doc/guides/rel_notes/deprecation.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index a58a179..34b0e3c 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -142,3 +142,9 @@ Deprecation Notices Python 2 support will be completely removed in 20.11. In 20.08, explicit deprecation warnings will be displayed when running scripts with Python 2. + +* cryptodev: ``RTE_CRYPTO_AEAD_LIST_END`` from ``enum rte_crypto_aead_algorithm``, + ``RTE_CRYPTO_CIPHER_LIST_END`` from ``enum rte_crypto_cipher_algorithm`` and + ``RTE_CRYPTO_AUTH_LIST_END`` from ``enum rte_crypto_auth_algorithm`` will be + removed. + \ No newline at end of file