From patchwork Thu Mar 9 20:09:49 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 124912 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 49FE841E21; Thu, 9 Mar 2023 21:10:04 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D659140ED7; Thu, 9 Mar 2023 21:10:03 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 5C78F40695 for ; Thu, 9 Mar 2023 21:10:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1678392601; x=1709928601; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=VIYpwJFM4HTa4nP7I3JpYLKrq8nqkhG0jeAQNoYqauY=; b=ayALMvI1B1WPFUwvWOAiGInRd/BRsc+hre7SSrNCKaUX7Sxkow5msgSF gxeeMEBgp4TZhmI/PkJH2kRN+FHKGe6FArdHkSrmOJIRUmQHXIgJrPYGJ 33BT7EmM/r4V2it0K6C4HEUgPSFz1+9Yebxu/yx5FGEIzAHIEMBRqmqlJ Nx35Y7e0irgk+j4EFCPLDQJmO+Rz6D2yo7uASxkAR9t6v6mLErYlEhOVX fu9kJKXIXkWYMqdos/01jhZb9+EINSn4Ozcm/3EkTO2cGOitrfKmzoyJO YPxOHITVOSJIJbXhZUFrRdWWCA22GVi2pMdMLn1qZVjHM7SgWxYCMAVod g==; X-IronPort-AV: E=McAfee;i="6500,9779,10644"; a="422826519" X-IronPort-AV: E=Sophos;i="5.98,247,1673942400"; d="scan'208";a="422826519" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Mar 2023 12:09:51 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10644"; a="746452650" X-IronPort-AV: E=Sophos;i="5.98,247,1673942400"; d="scan'208";a="746452650" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com) ([10.237.222.53]) by fmsmga004.fm.intel.com with ESMTP; 09 Mar 2023 12:09:50 -0800 From: Cristian Dumitrescu To: dev@dpdk.org Cc: kamalakannan.r@intel.com, yogesh.jangra@intel.com, harshad.suresh.narayane@intel.com Subject: [PATCH V3] doc: announce the pipeline legacy API deprecation Date: Thu, 9 Mar 2023 20:09:49 +0000 Message-Id: <20230309200949.847639-1-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221121195421.3743179-1-cristian.dumitrescu@intel.com> References: <20221121195421.3743179-1-cristian.dumitrescu@intel.com> 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 Announce the deprecation of the legacy pipeline, table and port library API and gradual stabilization of the new API. Signed-off-by: Cristian Dumitrescu Signed-off-by: Cristian Dumitrescu Acked-by: Harshad Narayane Signed-off-by: Cristian Dumitrescu Acked-by: Yogesh Jangra Acked-by: Bruce Richardson Acked-by: Radu Nicolau Signed-off-by: Cristian Dumitrescu Acked-by: Kamalakannan R --- doc/guides/rel_notes/deprecation.rst | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 872847e938..66f2329b9c 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -135,3 +135,21 @@ Deprecation Notices Its removal has been postponed to let potential users report interest in maintaining it. 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. + +* 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. + +* 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.