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 4C66D46DC0; Mon, 25 Aug 2025 16:58:36 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D6DEC402DC; Mon, 25 Aug 2025 16:58:35 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 9AE84402DC for ; Mon, 25 Aug 2025 16:58:33 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1213) id BE2D52113376; Mon, 25 Aug 2025 07:58:32 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com BE2D52113376 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1756133912; bh=QtprBRT6uVx+MOmObmBRjKn7rpp8QI8UMlxhyMD3YEw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tL+/WdlFDfeCPsaQ2NYu3FusEagidYbKL+8t86y1T+kAfizd24r8FaASTgaDpHiaK aUgcBrEGlilNnm0NAIjUFcLHcG5NFFl86npx4/vBj5+qWbD7KOsg5xLlbmg8ENn1A8 D68g+jhxDVBShxB+PHfMsWVxXp2v6EjlxphPuQ/4= From: Andre Muezerie To: andremue@linux.microsoft.com Cc: dev@dpdk.org Subject: [PATCH RESEND v5 0/3] enable drivers to be compiled with MSVC Date: Mon, 25 Aug 2025 07:58:13 -0700 Message-Id: <1756133896-9216-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. 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_flow_dv.c | 5 +- drivers/net/mlx5/mlx5_rx.c | 4 +- drivers/net/mlx5/mlx5_utils.c | 4 +- drivers/net/octeon_ep/otx_ep_mbox.c | 24 +++- 7 files changed, 183 insertions(+), 18 deletions(-) -- 2.50.1.vfs.0.1