Re: [PATCH] net/mlx5: avoid implicit conversion to 64 bits

2025-06-04 Thread Raslan Darawsheh
Hi, On 05/05/2025 6:16 PM, Andre Muezerie wrote: When compiling with MSVC, errors like the one below pop up: ../drivers/crypto/mlx5/mlx5_crypto_xts.c(488): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) Depending on the situat

Re: [PATCH] net/mlx5: avoid implicit conversion to 64 bits

2025-06-03 Thread Dariusz Sosnowski
Hi, On Mon, May 05, 2025 at 08:16:42AM -0700, Andre Muezerie wrote: > When compiling with MSVC, errors like the one below pop up: > > ../drivers/crypto/mlx5/mlx5_crypto_xts.c(488): warning C4334: > '<<': result of 32-bit shift implicitly converted to 64 bits > (was 64-bit shift intended?)

[PATCH] net/mlx5: avoid implicit conversion to 64 bits

2025-05-05 Thread Andre Muezerie
When compiling with MSVC, errors like the one below pop up: ../drivers/crypto/mlx5/mlx5_crypto_xts.c(488): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) Depending on the situation, the fix is to do a 64-bit shift, or be explicit a