Acked-by: Chengwen Feng <fengcheng...@huawei.com> On 2024/11/22 5:41, Andre Muezerie 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: Andre Muezerie <andre...@linux.microsoft.com> > --- > app/test-pmd/shared_rxq_fwd.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/app/test-pmd/shared_rxq_fwd.c b/app/test-pmd/shared_rxq_fwd.c > index 623d62da88..b85830b90e 100644 > --- a/app/test-pmd/shared_rxq_fwd.c > +++ b/app/test-pmd/shared_rxq_fwd.c > @@ -92,7 +92,7 @@ forward_shared_rxq(struct fwd_stream *fs, uint16_t nb_rx, > static bool > shared_rxq_fwd(struct fwd_stream *fs) > { > - struct rte_mbuf *pkts_burst[nb_pkt_per_burst]; > + struct rte_mbuf *pkts_burst[MAX_PKT_BURST]; > uint16_t nb_rx; > > nb_rx = common_fwd_stream_receive(fs, pkts_burst, nb_pkt_per_burst);
- [PATCH v12 05/21] hash: remove use of VLAs for Windows ... Andre Muezerie
- [PATCH v12 08/21] gro: fix overwrite unprocessed packet... Andre Muezerie
- [PATCH v12 14/21] common/idpf: remove use of VLAs for W... Andre Muezerie
- [PATCH v12 13/21] test: remove use of VLAs for Windows ... Andre Muezerie
- [PATCH v12 15/21] net/i40e: remove use of VLAs for Wind... Andre Muezerie
- [PATCH v12 18/21] build: enable vla warnings on Windows... Andre Muezerie
- [PATCH v12 20/21] app/testpmd: remove use of VLAs for W... Andre Muezerie
- Re: [PATCH v12 20/21] app/testpmd: remove use of V... fengchengwen
- [PATCH v12 19/21] test: remove use of VLAs for Windows ... Andre Muezerie
- [PATCH v12 12/21] app/testpmd: remove use of VLAs for W... Andre Muezerie
- [PATCH v12 16/21] common/mlx5: remove use of VLAs for W... Andre Muezerie
- [PATCH v12 17/21] net/mlx5: remove use of VLAs for Wind... Andre Muezerie
- [PATCH v12 21/21] hash: remove use of VLAs by using sta... Andre Muezerie
- [PATCH v12 03/21] eal/common: remove use of VLAs Andre Muezerie
- [PATCH v12 04/21] ethdev: remove use of VLAs for Window... Andre Muezerie
- Re: [PATCH v12 04/21] ethdev: remove use of VLAs f... fengchengwen
- RE: [PATCH v12 04/21] ethdev: remove use of VL... Konstantin Ananyev
- Re: [PATCH v12 04/21] ethdev: remove use o... fengchengwen