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 5035C43801; Wed, 3 Jan 2024 01:05:28 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1F7D7402BC; Wed, 3 Jan 2024 01:05:28 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 29ABD402A3 for ; Wed, 3 Jan 2024 01:05:26 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 4E8BD20ACEEA; Tue, 2 Jan 2024 16:05:25 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 4E8BD20ACEEA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1704240325; bh=qxgnv3vQIYYYH2BdQ9AG/vW6sufYdtUKtkztO4VKJFQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JYv4BA9Vt/MR6QNoG351kHuWy2904hKtYzUzAj+SYS3Gc3/iHuEVfvnR5yLcpnD9e 72TpvZQxbUKsYMQlAHZECWntPE/z9b3BKJU6QS1/VfJFG15mWXYsEFC+zokRd6jAGO 7Zg7K/ccUg9IrQ3Ikgy3IbavkrpYVu6awosgfPKY= From: Tyler Retzlaff To: dev@dpdk.org Cc: Dmitry Kozlyuk , Pallavi Kadam , Tyler Retzlaff Subject: [PATCH v3] eal: initialize shared plugins on Windows Date: Tue, 2 Jan 2024 16:05:22 -0800 Message-Id: <1704240323-2963-1-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1701976851-17275-1-git-send-email-roretzla@linux.microsoft.com> References: <1701976851-17275-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 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. Tyler Retzlaff (1): eal: initialize shared plugins on Windows lib/eal/common/eal_common_options.c | 90 ++++++++++++++++++++++++++++++------- lib/eal/windows/eal.c | 8 ++++ 2 files changed, 83 insertions(+), 15 deletions(-) -- 1.8.3.1