From patchwork Tue Dec 6 17:28:26 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 120500 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 77C40A054A; Tue, 6 Dec 2022 18:29:04 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2A49142D1C; Tue, 6 Dec 2022 18:28:55 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 02EF240FAE for ; Tue, 6 Dec 2022 18:28:51 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 1A57520B83E7; Tue, 6 Dec 2022 09:28:51 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 1A57520B83E7 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1670347731; bh=azUCI+9yF9g2J/BoVgZzr+1vg2zUWBmkXYoFjmzM0vI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nLBVkHUDivpgIwLN4uDACZGvOPSXWzbtk+nsjGl0rFp6amoZJN4stOAnelFPgnlWs Sn9e8yklkRiVlvvPD5KUgNsL+2lC3z/FbQZwbXL6glkUlOnrwvPmZDGADk0HctKYxW jjuSFniK4UJg+H2/J/gbOqhf39MPF3miS1zbGkJg= From: Tyler Retzlaff To: dev@dpdk.org Cc: thomas@monjalon.net, david.marchand@redhat.com, stephen@networkplumber.org, olivier.matz@6wind.com, mb@smartsharesystems.com, Tyler Retzlaff Subject: [PATCH v2 3/3] eal: deprecate pthread control thread create API Date: Tue, 6 Dec 2022 09:28:26 -0800 Message-Id: <1670347706-23802-4-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1670347706-23802-1-git-send-email-roretzla@linux.microsoft.com> References: <1670271868-11364-1-git-send-email-roretzla@linux.microsoft.com> <1670347706-23802-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.