[PATCH 2/2] net/ice: disable warning in base code for Windows builds

Bruce Richardson bruce.richardson at intel.com
Thu Dec 4 12:29:03 CET 2025


Disable warning about "zero extending 'unsigned long' to 'u64' of
greater size" in base code builds.

Cc: stable at dpdk.org

Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
---
 drivers/net/intel/ice/base/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/intel/ice/base/meson.build b/drivers/net/intel/ice/base/meson.build
index f46dbb265f..fd079c41cf 100644
--- a/drivers/net/intel/ice/base/meson.build
+++ b/drivers/net/intel/ice/base/meson.build
@@ -35,6 +35,7 @@ if is_ms_compiler
     error_cflags = [
             '/wd4101', # unreferenced local variable
             '/wd4334', # result of 32-bit shift implicitly converted to 64 bits
+            '/wd4319', # zero extending 'unsigned long' to 'u64' of greater size
     ]
 else
     error_cflags = [
-- 
2.51.0



More information about the dev mailing list