From patchwork Thu Mar 9 13:47:29 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 124900 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 3449841E14; Thu, 9 Mar 2023 14:47:35 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B207040ED7; Thu, 9 Mar 2023 14:47:34 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 6C5A0400D7 for ; Thu, 9 Mar 2023 14:47:32 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1678369652; x=1709905652; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=r+nS+cDde4UWnbEEIzGNk1kZP7xngRD5YxrT6hFRKM4=; b=hzA1MvScVoSQ3UvrtdvyIhbeODKwgHso+pwX0DKbZzZ8L4olhkKrVGz3 PRttsEpyzZ6EP0rjUy77F4R5PhbA8oouvJHBdtklWAB2+zAfYG4iXNLzJ olEStDmCx7NxkasEs/Zi3DE2f4VuxRIbvsvQriNNyoTCKXlEcoATbEAaz 4fEaysfZ/YWZrIqNZ2+JOlTWfeCO/3V6FxnXUVFF2cZeSQpXcYCCxBh9b QZjiVCoZvT+9kaqVckJD8uR7J2mPN1yXQ3BoKaowXavz0kxV8ObTACCD7 Xe7i122AByUvaM5mvIuCAYLmbad4B0XHVo1qpyQQ0ECsPN1PYK0gpnHbQ A==; X-IronPort-AV: E=McAfee;i="6500,9779,10643"; a="316839993" X-IronPort-AV: E=Sophos;i="5.98,246,1673942400"; d="scan'208";a="316839993" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Mar 2023 05:47:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10643"; a="801176240" X-IronPort-AV: E=Sophos;i="5.98,246,1673942400"; d="scan'208";a="801176240" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com) ([10.237.222.53]) by orsmga004.jf.intel.com with ESMTP; 09 Mar 2023 05:47:30 -0800 From: Cristian Dumitrescu To: dev@dpdk.org Subject: [PATCH V2] doc: announce the pipeline legacy API deprecation Date: Thu, 9 Mar 2023 13:47:29 +0000 Message-Id: <20230309134729.846985-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 --- 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..c12e87fd5b 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.11 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.11 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.11 release.