Re: [PATCH v3 09/19] latencystats: remove use of VLAs for Windows built code

2024-05-06 Thread Stephen Hemminger
On Mon, 6 May 2024 11:18:41 -0700 Tyler Retzlaff wrote: > 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 See the alternate patch, the

[PATCH v3 09/19] latencystats: remove use of VLAs for Windows built code

2024-05-06 Thread 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 --- lib/latencystats/rte_latencystats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) di