Re: [PATCH v10 21/21] hash: remove use of VLAs by using standard arrays

2024-11-21 Thread Andre Muezerie
On Wed, Nov 20, 2024 at 10:51:26AM +, Medvedkin, Vladimir wrote: > Hi Andre, > > On 20/11/2024 03:13, Andre Muezerie wrote: > >MSVC does not support VLAs, replace VLAs with standard C arrays. > > > >Signed-off-by: Andre Muezerie > >--- > > lib/hash/rte_thash_gf2_poly_math.c | 7 --- > > 1

Re: [PATCH v10 21/21] hash: remove use of VLAs by using standard arrays

2024-11-20 Thread Medvedkin, Vladimir
Hi Andre, On 20/11/2024 03:13, Andre Muezerie wrote: MSVC does not support VLAs, replace VLAs with standard C arrays. Signed-off-by: Andre Muezerie --- lib/hash/rte_thash_gf2_poly_math.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/hash/rte_thash_gf2_poly_ma

[PATCH v10 21/21] hash: remove use of VLAs by using standard arrays

2024-11-19 Thread Andre Muezerie
MSVC does not support VLAs, replace VLAs with standard C arrays. Signed-off-by: Andre Muezerie --- lib/hash/rte_thash_gf2_poly_math.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/hash/rte_thash_gf2_poly_math.c b/lib/hash/rte_thash_gf2_poly_math.c index 1c62974e