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 168D0439C4; Thu, 25 Jan 2024 19:44:06 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8E82F42D28; Thu, 25 Jan 2024 19:44:05 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 21686402AB for ; Thu, 25 Jan 2024 19:44:04 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 6A5F920E56B6; Thu, 25 Jan 2024 10:44:03 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 6A5F920E56B6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1706208243; bh=C52N9WxjoCb07dXHYvxGC6kc8+UtsJQ86lS7gqDzHFA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=g1SnA067E/IR6CtulASXw2oQFMtVk3YS9nwI+OuthzOWYwtWdAB6x4ZzIs7qwqpsP ryhwm7GSGBD3rVpLiNgd3NUhzGNhLctfwyDVP3eYSvWjiA3+nIlklhE5+45e3TlwTB WMPv+yxpsw4o04XNpPUfwu0s5GJeRli98nwR/Rr8= Date: Thu, 25 Jan 2024 10:44:03 -0800 From: Tyler Retzlaff To: dev@dpdk.org Cc: Dmitry Kozlyuk , Pallavi Kadam Subject: Re: [PATCH v4 0/2] eal: initialize shared plugins on Windows Message-ID: <20240125184403.GA30599@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1701976851-17275-1-git-send-email-roretzla@linux.microsoft.com> <1704757091-7964-1-git-send-email-roretzla@linux.microsoft.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1704757091-7964-1-git-send-email-roretzla@linux.microsoft.com> User-Agent: Mutt/1.5.21 (2010-09-15) 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 ping for Windows maintainers thanks! On Mon, Jan 08, 2024 at 03:38:09PM -0800, Tyler Retzlaff wrote: > When EAL is built with MSVC it is possible to dynamically load plugins > on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC > and provide code to load plugins on Windows. > > v4: > * include winipfamily.h header for WINAPI_FAMILY macros and provide > definition for PHONE_APP if mingw winipfamily.h doesn't supply it > > v3: > * revert use of PRIu32 from previous patch just use %lu to make > unsigned long format happy > > v2: > * revert unintended / unrelated whitespace change > * include inttypes.h for use of PRIu32 in log format string > > Tyler Retzlaff (2): > windows: include winapifamily header for macros > eal: initialize shared plugins on Windows > > lib/eal/common/eal_common_options.c | 90 ++++++++++++++++++++++++++++++------- > lib/eal/windows/eal.c | 8 ++++ > lib/eal/windows/include/dirent.h | 6 +++ > 3 files changed, 89 insertions(+), 15 deletions(-) > > -- > 1.8.3.1