From patchwork Tue Dec 6 00:39:27 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 120463 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 1F1AEA0550; Tue, 6 Dec 2022 01:39:33 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0428740156; Tue, 6 Dec 2022 01:39:33 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 0DCE040151 for ; Tue, 6 Dec 2022 01:39:31 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 56F6A20B83CB; Mon, 5 Dec 2022 16:39:30 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 56F6A20B83CB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1670287170; bh=eMwNeJJH6Y6ZBNEzF8eE40sCJFKxUvznnAxfY3DBsUk=; h=From:To:Cc:Subject:Date:From; b=PDiqFINVxOTVXsMMy6l7r6w8EHiSdVwEZX6f95QHqnUqZiJsXNL/2YQTjtyuZdnm0 Rk1TT9ym7VxHGQ6mQLKn+2fRKeKyKgOVQBHITFRIpxCU2BRmTBL3DPQh08AgF1JNem JUTK2/nH9Nu+N9GvsnFQDwH+imb6vBVzSpfuIbbI= From: Tyler Retzlaff To: dev@dpdk.org, david.marchand@redhat.com, dmitry.kozliuk@gmail.com Cc: Tyler Retzlaff Subject: [PATCH 0/2] enable lcores test on Windows Date: Mon, 5 Dec 2022 16:39:27 -0800 Message-Id: <1670287169-15325-1-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 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 Enable the lcores test on Windows instead of skipping it. 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. 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(-)