From patchwork Wed Jul 19 15:12:25 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 129647 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3C13A42DA6; Wed, 19 Jul 2023 17:12:30 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0DAA440DFD; Wed, 19 Jul 2023 17:12:30 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 6904F40685 for ; Wed, 19 Jul 2023 17:12:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1689779548; x=1721315548; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=Mt0ZVJ3c8yXtmowqv8mBrXbzapmP7AssGjyaSXyiCBA=; b=GjgOSfK3qO2TuzqTX4FRf4PZAK+9gus+uMwGf6Tqo6ngCylVhUhLOpVS F8Drlmz/DyxrD4Mlrir1Tkl6fDdSomJenZGbhiDAURvnqZKW9pYjagIWK BxH8Krc1EQiW6fqBgXkZkh9x1MHhYzYgbYhhomefJ+3raabbQqxkDSQRd k8CjmfFNGNwPgC43hogK5uS/eetT+JXHf05c0ruh6AyWDMt8KmbLxBfPp QnD9jWw9NpvRaBoD+YKGSOy6tc5bkowZwzsYvOS5ATZGXlWsZZtPUDZd2 Q6pieOcGnjA3Dgu54+4HqJBi8cFz5sjmkextNLEMFcXriq3RxiEfHgWnX A==; X-IronPort-AV: E=McAfee;i="6600,9927,10776"; a="370051063" X-IronPort-AV: E=Sophos;i="6.01,216,1684825200"; d="scan'208";a="370051063" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Jul 2023 08:12:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10776"; a="814144599" X-IronPort-AV: E=Sophos;i="6.01,216,1684825200"; d="scan'208";a="814144599" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com) ([10.237.222.53]) by FMSMGA003.fm.intel.com with ESMTP; 19 Jul 2023 08:12:25 -0700 From: Cristian Dumitrescu To: dev@dpdk.org Cc: bruce.richardson@intel.com, radu.nicolau@intel.com, kamalakannan.r@intel.com, harshad.suresh.narayane@intel.com Subject: [PATCH] doc: postpone deprecation of pipeline legacy API Date: Wed, 19 Jul 2023 15:12:25 +0000 Message-Id: <20230719151225.1658316-1-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 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 Postpone the deprecation of the legacy pipeline, table and port library API and gradual stabilization of the new API. Signed-off-by: Cristian Dumitrescu Acked-by: Bruce Richardson Signed-off-by: Cristian Dumitrescu Acked-by: Harshad Narayane Acked-by: Radu Nicolau --- doc/guides/rel_notes/deprecation.rst | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index fb771a0305..56ef906cdb 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -145,19 +145,16 @@ Deprecation Notices In the absence of such interest, this library will be removed in DPDK 23.11. * pipeline: The pipeline library legacy API (functions rte_pipeline_*) - will be deprecated in DPDK 23.07 release and removed in DPDK 23.11 release. - The new pipeline library API (functions rte_swx_pipeline_*) - will gradually transition from experimental to stable status - starting with DPDK 23.07 release. + will be deprecated and subsequently removed in DPDK 24.11 release. + Before this, the new pipeline library API (functions rte_swx_pipeline_*) + will gradually transition from experimental to stable status. * table: The table library legacy API (functions rte_table_*) - will be deprecated in DPDK 23.07 release and removed in DPDK 23.11 release. - The new table library API (functions rte_swx_table_*) - will gradually transition from experimental to stable status - starting with DPDK 23.07 release. + will be deprecated and subsequently removed in DPDK 24.11 release. + Before this, the new table library API (functions rte_swx_table_*) + will gradually transition from experimental to stable status. * port: The port library legacy API (functions rte_port_*) - will be deprecated in DPDK 23.07 release and removed in DPDK 23.11 release. - The new port library API (functions rte_swx_port_*) - will gradually transition from experimental to stable status - starting with DPDK 23.07 release. + will be deprecated and subsequently removed in DPDK 24.11 release. + Before this, the new port library API (functions rte_swx_port_*) + will gradually transition from experimental to stable status.