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 6240F41E95; Tue, 14 Mar 2023 23:50:43 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3E20640E5A; Tue, 14 Mar 2023 23:50:43 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 3F93540A7E for ; Tue, 14 Mar 2023 23:50:41 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 8BD0A2057009; Tue, 14 Mar 2023 15:50:40 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 8BD0A2057009 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1678834240; bh=p37Rtf0sReDE5DjJIthmz7ZOxLidwZiyRdra/N2bqhY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hNxGaGI/cmV6/2MKKPu2c+n7tgOa3VbyASjx7BInR7ne8gzF95vQyaW/PIb4LVOS1 Z8s+YF/JI4Z1JmNk/UAb+FqTGifGAjoKRkX/S96BhCx/fVmyU8iS84tJNbKLFwiJ/E 2MvZ8m0yIJG9PGJ+hZi0qrf0LLAAtU3fBbyFDzMM= From: Tyler Retzlaff To: dev@dpdk.org Cc: thomas@monjalon.net, david.marchand@redhat.com, Tyler Retzlaff Subject: [PATCH v4 0/2] fix race in rte_thread_create failure path Date: Tue, 14 Mar 2023 15:50:37 -0700 Message-Id: <1678834239-11569-1-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1677782682-27200-1-git-send-email-roretzla@linux.microsoft.com> References: <1677782682-27200-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 v4: * style fixes reported by CI v3: * don't free wrapper context from new thread now that wrapper completion is complete before returning from creating thread. v2: * new approach over v1 of the patch to avoid using pthread np API that is not available on Alpine Linux. * to conform to rte_thread_create parameter const qualification include an additional patch to const qualify rte_thread_set_affinity cpusetp parameter. Tyler Retzlaff (2): eal: make cpusetp to rte thread set affinity const eal: fix failure path race setting new thread affinity lib/eal/common/eal_common_thread.c | 6 ++--- lib/eal/include/rte_thread.h | 2 +- lib/eal/unix/rte_thread.c | 51 ++++++++++++++++++++++++++++++-------- 3 files changed, 44 insertions(+), 15 deletions(-) -- 1.8.3.1