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 589BEA0542 for ; Fri, 16 Dec 2022 18:16:50 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4227642D3D; Fri, 16 Dec 2022 18:16:48 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 411E042D25; Fri, 16 Dec 2022 18:16:45 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 82EA120B96DE; Fri, 16 Dec 2022 09:16:44 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 82EA120B96DE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1671211004; bh=tmEq2y2ofztDWyVbXpycKDPx7XHdv1RGWbAMfn7TudM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hxJu4/uQ0lmyaAMdjhXKcLhkDOe3xR7BOcQNs3z/FRBaxAweJ/6yHp5FR/QFyzfzw bPkb8/r8A0ug/gYIc5SJK9zT0OAlzOuKPVZ8cKWKYCSrqWX3GSDARrR+NSMX2ySnHL GnaoIbk5d6Q0b7zvZkFcr9iJgao3zoFDBanLHfJM= 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 1/2] eal: add missing call marking memory config complete Date: Fri, 16 Dec 2022 09:16:39 -0800 Message-Id: <1671211000-14856-2-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1671211000-14856-1-git-send-email-roretzla@linux.microsoft.com> References: <1670287169-15325-1-git-send-email-roretzla@linux.microsoft.com> <1671211000-14856-1-git-send-email-roretzla@linux.microsoft.com> X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Memory configuration was not being marked as completed add the missing call to rte_eal_init() for Windows. Allows rte_thread_register to work on Windows and lcores_autotest to be built and run Windows which also exercises the rte_ctrl_thread_create API on Windows. Fixes: 5c307ba2a5b1 ("eal: register non-EAL threads as lcores") Signed-off-by: Tyler Retzlaff --- lib/eal/windows/eal.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/eal/windows/eal.c b/lib/eal/windows/eal.c index adb929a..56fadc7 100644 --- a/lib/eal/windows/eal.c +++ b/lib/eal/windows/eal.c @@ -462,6 +462,9 @@ enum rte_proc_type_t */ rte_eal_mp_remote_launch(sync_func, NULL, SKIP_MAIN); rte_eal_mp_wait_lcore(); + + eal_mcfg_complete(); + return fctret; } -- 1.8.3.1