From patchwork Fri Dec 16 17:16:38 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 120986 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 87327A0542; Fri, 16 Dec 2022 18:16:46 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 249BC42D25; Fri, 16 Dec 2022 18:16:46 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 3E3654068E; Fri, 16 Dec 2022 18:16:45 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 762FF20B96DB; Fri, 16 Dec 2022 09:16:44 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 762FF20B96DB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1671211004; bh=l0p1t6GLUGvnBfFIcEoxVo+Fu6TlUyQRJlMqgi7FtJI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YfUOi3Q9VEH5ulARWkN3YAxX90Hrubd2s5PnfwVjL146kXHqVVCOHL0AzrBeJV82y QID36+Bl4subUhgW+aN9Ma3IIqcEE8vyZQeVoBkYG9VYsVWxE3r7npi0XGx11A2Ux8 pyB7vcuInD6N+GzVA1/PnaDdCP+NFwAtz9v9J/PI= From: Tyler Retzlaff To: dev@dpdk.org Cc: stable@dpdk.org, david.marchand@redhat.com, dmitry.kozliuk@gmail.com, stephen@networkplumber.org, Tyler Retzlaff Subject: [PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it. Date: Fri, 16 Dec 2022 09:16:38 -0800 Message-Id: <1671211000-14856-1-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1670287169-15325-1-git-send-email-roretzla@linux.microsoft.com> References: <1670287169-15325-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 Two bugs are fixed to allow this test to build, run & pass. * Mark memory configuration complete during rte_eal_init() * Use rte thread api to get a proper implementation of thread join. v2: * update commit message to clarify why this test is beneficial on Windows. * add missing Fixes tag Tyler Retzlaff (2): eal: add missing call marking memory config complete test: enable lcores test on Windows app/test/test_lcores.c | 28 +++++++++++++--------------- lib/eal/windows/eal.c | 3 +++ 2 files changed, 16 insertions(+), 15 deletions(-) Acked-by: David Marchand