From patchwork Mon Jul 27 09:41:13 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Dybkowski, AdamX" X-Patchwork-Id: 74842 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 EC3E9A0524; Mon, 27 Jul 2020 11:41:40 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 163051BFE2; Mon, 27 Jul 2020 11:41:40 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 4BED31BFE0 for ; Mon, 27 Jul 2020 11:41:38 +0200 (CEST) IronPort-SDR: IQPkb6RSNis/mwhD26ifydSn4+RiZz631XcTveDCId2IeejrAYzunHqalIccl28b5R/O/87wv+ Wo7+otMJQr1Q== X-IronPort-AV: E=McAfee;i="6000,8403,9694"; a="138493730" X-IronPort-AV: E=Sophos;i="5.75,402,1589266800"; d="scan'208";a="138493730" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Jul 2020 02:41:37 -0700 IronPort-SDR: P1KYVnjoZYtXK3pileLMaCi0bFqHt8Xc7xBDc7NQZIq1YxxEI4qoR8W08GiCWcBl7YasCaIPvp AqCluCTwTlOQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,402,1589266800"; d="scan'208";a="321745689" Received: from unknown (HELO adamdybx-MOBL.ger.corp.intel.com) ([10.104.113.9]) by fmsmga002.fm.intel.com with ESMTP; 27 Jul 2020 02:41:35 -0700 From: Adam Dybkowski To: dev@dpdk.org, fiona.trahe@intel.com, akhil.goyal@nxp.com Cc: Adam Dybkowski , Fan Zhang Date: Mon, 27 Jul 2020 11:41:13 +0200 Message-Id: <20200727094113.2849-1-adamx.dybkowski@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] doc: scheduler API deprecation notice 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" This patch adds a deprecation notice about upcoming changes in public API of the Scheduler PMD. Signed-off-by: Adam Dybkowski Acked-by: Fan Zhang Acked-by: Thomas Monjalon Acked-by: Akhil Goyal --- doc/guides/rel_notes/deprecation.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index a58a17946..dbc779a9e 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -142,3 +142,10 @@ 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. + +* scheduler: The functions ``rte_cryptodev_scheduler_slave_attach``, + ``rte_cryptodev_scheduler_slave_detach`` and + ``rte_cryptodev_scheduler_slaves_get`` will be replaced in 20.11 by + ``rte_cryptodev_scheduler_worker_attach``, + ``rte_cryptodev_scheduler_worker_detach`` and + ``rte_cryptodev_scheduler_workers_get`` accordingly.