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 5BE7746EB4; Tue, 9 Sep 2025 17:50:54 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 054BE40281; Tue, 9 Sep 2025 17:50:54 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id C66CC4026D for ; Tue, 9 Sep 2025 17:50:51 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1213) id E5295211AA15; Tue, 9 Sep 2025 08:50:50 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com E5295211AA15 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1757433050; bh=yDw7dJKvt4Pz1+Vad6IEOyITm7FOCjZAMICxDYR3K9o=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=We+LiGyOaJq+nWuSwcV27SmbnW4I0RaLAVqiUrNc0/vHtbYG4RZgJvjkEYEnJQuae vU8/jgdmIc2Nzzrtm5GI0+VDP4XcX6jJIDp0vyiYshsyh9OgwthcvVzp2Dohwa1Yuo v0VbW+vo9j9klMmhJiYIqV6WjCmcaYOIGiuTMwf4= From: Andre Muezerie To: andremue@linux.microsoft.com Cc: dev@dpdk.org Subject: [PATCH v6 0/3] enable drivers to be compiled with MSVC Date: Tue, 9 Sep 2025 08:50:45 -0700 Message-Id: <1757433048-18537-1-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1735243903-26857-1-git-send-email-andremue@linux.microsoft.com> References: <1735243903-26857-1-git-send-email-andremue@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 This patchset solves the last issues preventing drivers from being compiled with MSVC and enables drivers to be built with it. -v6: - Remove temporary workaround for bug (https://bugs.dpdk.org/show_bug.cgi?id=1758) introduced in an earlier iteration. v5: - Remove unnecessary parentheses from macros v4: - Add explicit casts to avoid warnings in mlx5 driver (https://bugs.dpdk.org/show_bug.cgi?id=1758). - Add cast to drivers\net\mlx5\mlx5_rx.c to avoid warnings about signed/unsigned comparison. v3: - Add a patch to enable drivers to be compiled with MSVC. v2: - Rebase on top of latest main. Andre Muezerie (3): app/test: remove use of non-standard array range initialization drivers/net: make code compatible with MSVC drivers: enable drivers to be compiled with MSVC app/test/test_cryptodev_zuc_test_vectors.h | 156 ++++++++++++++++++++- drivers/common/mlx5/mlx5_malloc.h | 4 +- drivers/meson.build | 4 - drivers/net/mlx5/mlx5_rx.c | 4 +- drivers/net/mlx5/mlx5_utils.c | 4 +- drivers/net/octeon_ep/otx_ep_mbox.c | 24 +++- 6 files changed, 179 insertions(+), 17 deletions(-) -- 2.50.1.vfs.0.2