From patchwork Wed Dec 7 20:31:29 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 120542 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 8D569A00C3; Wed, 7 Dec 2022 21:31:39 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E43AC42D1D; Wed, 7 Dec 2022 21:31:33 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 977DD410FB for ; Wed, 7 Dec 2022 21:31:31 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id E0EDD20B83E7; Wed, 7 Dec 2022 12:31:30 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com E0EDD20B83E7 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1670445090; bh=azUCI+9yF9g2J/BoVgZzr+1vg2zUWBmkXYoFjmzM0vI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=T2/ZTsayG8MbUjdXtvsrSC1/DM4SMTsrTxjYEaaqR7D0jIfIT4eFgFkW29hgcCZJZ wHwhbllORBU3fnyH3DLQ5XyHWRjiJDoDg8X3NDv3aTBt9RUpOZsW1sW0Ags8kAfdiv QcPnI0C1eiC4Hy8Br9keWVKT1EAq3mbc+OefTJ8k= From: Tyler Retzlaff To: dev@dpdk.org Cc: thomas@monjalon.net, david.marchand@redhat.com, stephen@networkplumber.org, olivier.matz@6wind.com, Tyler Retzlaff Subject: [PATCH v3 3/3] eal: deprecate pthread control thread create API Date: Wed, 7 Dec 2022 12:31:29 -0800 Message-Id: <1670445089-23898-4-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1670445089-23898-1-git-send-email-roretzla@linux.microsoft.com> References: <1670271868-11364-1-git-send-email-roretzla@linux.microsoft.com> <1670445089-23898-1-git-send-email-roretzla@linux.microsoft.com> 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 Give notice of rte_ctrl_thread_create deprecation. Signed-off-by: Tyler Retzlaff --- doc/guides/rel_notes/deprecation.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index b9b02dc..cb74e08 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -119,3 +119,7 @@ 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. + +* eal: The function ``rte_ctrl_thread_create`` will be removed and + replaced by the new ``rte_control_thread_create``api, continuing the + effort to decouple eal from platform-specific thread implementations.