From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B15CDA0547; Mon, 5 Dec 2022 21:34:35 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5500340156; Mon, 5 Dec 2022 21:34:35 +0100 (CET) Received: from smartserver.smartsharesystems.com (smartserver.smartsharesystems.com [77.243.40.215]) by mails.dpdk.org (Postfix) with ESMTP id 4FBC940151 for ; Mon, 5 Dec 2022 21:34:34 +0100 (CET) Content-class: urn:content-classes:message Subject: RE: [PATCH 0/3] eal: rte_ctrl_thread_create API replacement MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Mon, 5 Dec 2022 21:34:32 +0100 X-MimeOLE: Produced By Microsoft Exchange V6.5 Message-ID: <98CBD80474FA8B44BF855DF32C47DC35D87555@smartserver.smartshare.dk> In-Reply-To: <1670271868-11364-1-git-send-email-roretzla@linux.microsoft.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [PATCH 0/3] eal: rte_ctrl_thread_create API replacement Thread-Index: AdkI5568zAtQnsUSQZeG0VMzDc2g7wAAUIFg References: <1670271868-11364-1-git-send-email-roretzla@linux.microsoft.com> From: =?iso-8859-1?Q?Morten_Br=F8rup?= To: "Tyler Retzlaff" , , , , , 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 > From: Tyler Retzlaff [mailto:roretzla@linux.microsoft.com] > Sent: Monday, 5 December 2022 21.24 >=20 > Remove rte_ctrl_thread_create API which exposes pthread_t and provide > new rte_control_thread_create API based on EALs rte_thread_t. >=20 > To limit compatibility regression risk and ease of removal of the > existing rte_ctrl_thread_create in the future duplicate most of the > existing implementation. The duplication will be removed when > rte_ctrl_thread_create is finally duplicated/removed. >=20 > The unit test for rte_ctrl_thread_create has been duplicated to > exercise > both the old and the new API during transition, as with the API the > duplicate test will be removed when the rte_ctrl_thread_create API is > removed. >=20 > Tyler Retzlaff (3): > eal: add rte control thread create API > test: add rte control thread create API test > eal: deprecate pthread control thread create API >=20 > app/test/test_lcores.c | 44 +++++++++++++++++ > doc/guides/rel_notes/deprecation.rst | 4 ++ > lib/eal/common/eal_common_thread.c | 93 > ++++++++++++++++++++++++++++++++---- > lib/eal/include/rte_thread.h | 29 +++++++++++ > lib/eal/version.map | 3 ++ > 5 files changed, 165 insertions(+), 8 deletions(-) >=20 > -- > 1.8.3.1 >=20 Series-Acked-by: Morten Br=F8rup