Re: [PATCH v5 15/20] net/i40e: remove use of VLAs for Windows built code

2024-11-08 Thread Bruce Richardson
On Thu, Nov 07, 2024 at 04:44:46PM -0800, Andre Muezerie wrote: > From: Tyler Retzlaff > > MSVC does not support VLAs, replace VLAs with standard C arrays > or alloca(). alloca() is available for all toolchain/platform > combinations officially supported by DPDK. > > Signed-off-by: Tyler Retzlaf

[PATCH v5 15/20] net/i40e: remove use of VLAs for Windows built code

2024-11-07 Thread Andre Muezerie
From: Tyler Retzlaff MSVC does not support VLAs, replace VLAs with standard C arrays or alloca(). alloca() is available for all toolchain/platform combinations officially supported by DPDK. Signed-off-by: Tyler Retzlaff --- drivers/net/i40e/i40e_testpmd.c | 5 ++--- 1 file changed, 2 insertion