[PATCH v11 19/30] examples/ip-pipeline: remove packed attributes

2025-01-10 Thread Andre Muezerie
Removed packed attributes from structs that are naturally packed already, or don't require packing. Signed-off-by: Andre Muezerie --- examples/ip_pipeline/cli.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/ip_pipeline/cli.c b/examples/ip_pipeline/cli.c

[PATCH v11 28/30] pipeline: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 22/30] examples/l3fwd: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 26/30] ipsec: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 30/30] eal/include: deprecate macro __rte_packed

2025-01-10 Thread Andre Muezerie
Macro __rte_packed was marked as deprecated. Signed-off-by: Andre Muezerie --- lib/eal/include/rte_common.h | 13 + 1 file changed, 13 insertions(+) diff --git a/lib/eal/include/rte_common.h b/lib/eal/include/rte_common.h index d72f8590bd..40592f71b1 100644 --- a/lib/eal/include/rte

[PATCH v11 29/30] vhost: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 25/30] eal: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 21/30] examples/l3fwd-power: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 23/30] examples/ptpclient: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 24/30] examples/vhost_blk: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

Re: [PATCH v14 03/81] eal/common: remove use of VLAs

2025-01-10 Thread Stephen Hemminger
On Fri, 10 Jan 2025 12:22:22 -0800 Andre Muezerie wrote: > diff --git a/lib/eal/meson.build b/lib/eal/meson.build > index e1d6c4cf17..352db049e9 100644 > --- a/lib/eal/meson.build > +++ b/lib/eal/meson.build > @@ -31,3 +31,11 @@ endif > if is_freebsd > annotate_locks = false > endif > + >

[PATCH v11 02/30] eal/include: add new packing macros

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Add macro __rte_packed_begin which can be used to push existing pack value and set packing to 1-byte. Add macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compiler w

[PATCH v11 03/30] app/test-pmd: remove unnecessary packed attributes

2025-01-10 Thread Andre Muezerie
Removed __rte_packed attribute from structure that is naturally packed already. Signed-off-by: Andre Muezerie --- app/test-pmd/csumonly.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-pmd/csumonly.c b/app/test-pmd/csumonly.c index 2246c22e8e..d77a140641 100644 ---

[PATCH v11 10/30] drivers/crypto: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 05/30] doc/guides: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 06/30] drivers/baseband: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 00/30] fix packing of structs when building with MSVC

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Different alternatives were considered: 1) Have a macro __RTE_PACKED(decl) to which the struct/union is passed and the macro would define the struct/union with the appropriate packing attribute for the compiler in use. Advantages: * Can be pl

[PATCH v11 11/30] drivers/dma: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 09/30] drivers/compress: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 04/30] app/test: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 01/30] devtools: check packed attributes

2025-01-10 Thread Andre Muezerie
Ensure __rte_packed_begin and __rte_packed_end show up in pairs when checking patches. Signed-off-by: Andre Muezerie Acked-by: Tyler Retzlaff --- devtools/checkpatches.sh | 43 1 file changed, 43 insertions(+) diff --git a/devtools/checkpatches.sh b/dev

[PATCH v11 27/30] net: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

RE: [PATCH] doc: document hash RSS limitations with CQE zipping

2025-01-10 Thread Dariusz Sosnowski
> -Original Message- > From: Alexander Kozyrev > Sent: Thursday, January 9, 2025 23:34 > To: dev@dpdk.org > Cc: Raslan Darawsheh ; Slava Ovsiienko > ; Dariusz Sosnowski ; > Bing Zhao ; Suanming Mou > Subject: [PATCH] doc: document hash RSS limitations with CQE zipping > > RSS hash is

Re: [PATCH v4] vhost/user: clear ring addresses when getting vring base

2025-01-10 Thread Maxime Coquelin
On 11/27/24 3:03 AM, Jianping Zhao wrote: Clear ring addresses during vring base retrieval to handle guest reboot scenarios correctly. This is particularly important for vdpa-blk devices where the following issue occurs: When a guest OS with vdpa-blk device reboots, during UEFI stage, only on

Re: [PATCH v3 0/2] dts: add softnic test

2025-01-10 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

Re: [PATCH] vhost: fix misleading log when setting max queue num

2025-01-10 Thread Kevin Traynor
On 09/01/2025 14:31, Maxime Coquelin wrote: > rte_vhost_driver_set_max_queue_num API returns early when > called for a Vhost-user device, as this API is intended to > limit the maximum number of queue pairs supported by VDUSE > devices. However, a log mentioning the maximim number of > queue pairs

RE: [PATCH v13 00/21] remove use of VLAs for Windows

2025-01-10 Thread Konstantin Ananyev
> On Wed, Jan 08, 2025 at 01:30:13PM +, Konstantin Ananyev wrote: > > > > > > > As per guidance technical board meeting 2024/04/17. This series > > > removes the use of VLAs from code built for Windows for all 3 > > > toolchains. If there are additional opportunities to convert VLAs > > > to

[PATCH] examples/l3fwd: add option to set refetch offset

2025-01-10 Thread Dengdui Huang
The prefetch window depending on the HW platform. It is difficult to measure the prefetch window of a HW platform. Therefore, the prefetch offset option is added to change the prefetch window. User can adjust the refetch offset to achieve the best prefetch effect. In addition, this option is used

Re: [PATCH] vhost: fix misleading log when setting max queue num

2025-01-10 Thread Chenbo Xia
Hi Maxime, > On Jan 9, 2025, at 22:31, Maxime Coquelin wrote: > > External email: Use caution opening links or attachments > > > rte_vhost_driver_set_max_queue_num API returns early when > called for a Vhost-user device, as this API is intended to > limit the maximum number of queue pairs supp

[PATCH v11 13/30] drivers/mempool: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 08/30] drivers/common: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 20/30] examples/ipsec_secgw: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 17/30] drivers/vdpa: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 15/30] drivers/raw: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 07/30] drivers/bus: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 18/30] examples/common: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 12/30] drivers/event: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

[PATCH v11 16/30] drivers/regex: replace packed attributes

2025-01-10 Thread Andre Muezerie
MSVC struct packing is not compatible with GCC. Replace macro __rte_packed with __rte_packed_begin to push existing pack value and set packing to 1-byte and macro __rte_packed_end to restore the pack value prior to the push. Macro __rte_packed_end is deliberately utilized to trigger a MSVC compile

Re: [PATCH v3 2/2] dts: add softnic test

2025-01-10 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro 

Re: [PATCH v3 1/2] dts: allow expected packets to come from the TG

2025-01-10 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro 

Re: [EXTERNAL] [PATCH v6 0/4] add feature arc in rte_graph

2025-01-10 Thread Robin Jarry
Nitin Saxena, Jan 03, 2025 at 15:41: > Hi, > > Please find attached slides explaining feature arc concept and its > usage in graph library > > I can also present these slides to community to facilitate this patch > series review process Hi Nitin, thanks for taking the time to explain your design

Re: [PATCH v4 2/2] dts: add dual VLAN test suite

2025-01-10 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro 

[PATCH v9] dts: add offload version of buffer scatter test

2025-01-10 Thread Paul Szczepanek
From: Jeremy Spewock Some NICs tested in DPDK allow for the scattering of packets without an offload and others enforce that you enable the scattered_rx offload in testpmd. The current version of the suite for testing support of scattering packets only tests the case where the NIC supports testin

Re: [PATCH v4 1/2] dts: add stop ports decorator for VLAN functions

2025-01-10 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

[PATCH] base/thunderx: fix build with Gcc 15

2025-01-10 Thread Stephen Hemminger
Gcc 15 now produces warning with the base code of Thunderx driver. The issue is that Gcc now defaults to C23 mode, and the standards gods have decided that partial initialization of a union has changed. The fix is to use an empty initializer which forces full initialization. [2377/3224] Compiling

[PATCH] crypto/cnxk: fix gcc 15 warning

2025-01-10 Thread Stephen Hemminger
GCC 15 produces warnings about uninitaialized variables. In file included from ../lib/mbuf/rte_mbuf.h:36, from ../lib/cryptodev/rte_crypto.h:15, from ../lib/cryptodev/rte_cryptodev.h:19, from ../drivers/crypto/cnxk/cn9k_cryptodev_ops.c:5: In funct

Re: [PATCH] eal: add worker threads cleanup in rte_eal_cleanup()

2025-01-10 Thread Stephen Hemminger
On Fri, 10 Jan 2025 12:17:17 +0530 Gagandeep Singh wrote: > This patch introduces a worker thread cleanup function in the EAL library, > ensuring proper termination of created pthreads and invocation of > registered pthread destructors. > This guarantees the correct cleanup of thread-specific res

Re: [PATCH] examples/l3fwd: add option to set refetch offset

2025-01-10 Thread Stephen Hemminger
On Fri, 10 Jan 2025 17:37:15 +0800 Dengdui Huang wrote: > The prefetch window depending on the HW platform. It is difficult to > measure the prefetch window of a HW platform. Therefore, the prefetch > offset option is added to change the prefetch window. User can adjust > the refetch offset to ac

Re: [PATCH] examples/l3fwd: add option to set refetch offset

2025-01-10 Thread Stephen Hemminger
On Fri, 10 Jan 2025 17:37:15 +0800 Dengdui Huang wrote: > +#define DEFAULT_PREFECH_OFFSET 4 Spelling

[DPDK/ethdev Bug 1613] net/thunderx: warning with Gcc 15

2025-01-10 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1613 Bug ID: 1613 Summary: net/thunderx: warning with Gcc 15 Product: DPDK Version: 25.03 Hardware: All OS: All Status: UNCONFIRMED Severity: normal Priority

Re: [PATCH RESEND v7 2/5] ethdev: fix skip valid port in probing callback

2025-01-10 Thread Stephen Hemminger
On Fri, 10 Jan 2025 11:21:26 +0800 "lihuisong (C)" wrote: > Hi Stephen, > > Can you take a look at my below reply and reconsider this patch? > > /Huisong > > 在 2024/12/10 9:50, lihuisong (C) 写道: > > Hi Ferruh, Stephen and Thomas, > > > > Can you take a look at this patch? After all, it is an i

Re: Driver: bnxt_en

2025-01-10 Thread Stephen Hemminger
On Fri, 10 Jan 2025 10:02:48 +0530 Eldho Paul Mathew wrote: > We are using DPDK 18.05.1 > > We received a new network card. > > Broadcom Inc. and subsidiaries BCM57414 NetXtreme-E 10Gb/25Gb RDMA Ethernet > Controller > > DPDK 18.05.1 has support for this card and driver bnxt_en? > > If not, w

[PATCH v5] dts: reform hello world test suite

2025-01-10 Thread Dean Marx
Add a test suite to replace hello_world which simply starts and stops a testpmd session. The user can use this as a confidence check to verify their configuration. Signed-off-by: Dean Marx Reviewed-by: Paul Szczepanek Reviewed-by: Luca Vizzarro --- dts/framework/test_suite.py| 10 +

[PATCH v14 12/81] app/testpmd: remove use of VLAs for Windows built

2025-01-10 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 Acked-by: Chengwen Feng --- app/test-pmd/cmdline.c | 2 +- app/test

[PATCH v14 07/81] rcu: remove use of VLAs for Windows built code

2025-01-10 Thread Andre Muezerie
From: Konstantin Ananyev 1) ./lib/rcu/rte_rcu_qsbr.c:359:9 : warning: ISO C90 forbids variable length array ‘data’ [-Wvla] 2) ./lib/rcu/rte_rcu_qsbr.c:422:9 : warning: ISO C90 forbids variable length array ‘data’ [-Wvla] In both cases we allocate VLA for one element from RCU deferred que

[PATCH v14 10/81] net/ixgbe: remove use of VLAs

2025-01-10 Thread Andre Muezerie
From: Konstantin Ananyev 1) ../drivers/net/ixgbe/ixgbe_ethdev.c:3556:46: warning: variable length array used [-Wvla] 2) ../drivers/net/ixgbe/ixgbe_ethdev.c:3739:23: warning: variable length array used [-Wvla] 3) ../drivers/net/ixgbe/ixgbe_rxtx_vec_common.h:17:24: warning: variable len

[PATCH v14 05/81] hash: remove use of VLAs for Windows built code

2025-01-10 Thread Andre Muezerie
From: Konstantin Ananyev 1) ./lib/hash/rte_cuckoo_hash.c:2362:9 : warning: ISO C90 forbids variable length array ‘positions’ 2) ../lib/hash/rte_cuckoo_hash.c:2478:9 : warning: ISO C90 forbids variable length array ‘positions’ Both rte_hash_lookup_bulk_data() and rte_hash_lookup_with_hash

[PATCH v14 14/81] common/idpf: remove use of VLAs for Windows built code

2025-01-10 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 Acked-by: Bruce Richardson --- drivers/common/idpf/idpf_common_rxtx.c

[PATCH v14 08/81] gro: fix overwrite unprocessed packets

2025-01-10 Thread Andre Muezerie
From: Konstantin Ananyev gro_vxlan_tcp4_tbl_timeout_flush() is called without taking into account that first entries in pkts[] can be already occupied by un-processed packets. Fixes: 74080d7dcf31 ("gro: support IPv6 for TCP") Cc: sta...@dpdk.org Signed-off-by: Konstantin Ananyev Acked-by: Ferr

[PATCH v14 20/81] app/testpmd: remove use of VLAs for Windows built code in shared_rxq_fwd

2025-01-10 Thread Andre Muezerie
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 Acked-by: Chengwen Feng --- app/test-pmd/meson.build | 10 +- app/test-pmd/shared_r

[PATCH v14 13/81] test: remove use of VLAs for Windows built code

2025-01-10 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 Acked-by: Chengwen Feng --- app/test/test.c | 2 +-

[PATCH v14 11/81] net/ice: remove use of VLAs

2025-01-10 Thread Andre Muezerie
From: Konstantin Ananyev ../drivers/net/ice/ice_rxtx.c:1871:29: warning: variable length array used [-Wvla] Here VLA is used as a temp array for mbufs that will be used as a split RX data buffers. As at any given time only one thread can do RX from particular queue, at rx_queue_setup() we ca

[PATCH v14 09/81] gro: remove use of VLAs

2025-01-10 Thread Andre Muezerie
From: Konstantin Ananyev ../lib/gro/rte_gro.c:182:34: warning: variable length array used [-Wvla] ../lib/gro/rte_gro.c:363:34: warning: variable length array used [-Wvla] In both cases the pattern is the same: we use unprocess_pkts[nb_pkts] to collect un-used by GRO packets, and then cop

[PATCH v14 00/81] remove use of VLAs for Windows

2025-01-10 Thread Andre Muezerie
As per guidance technical board meeting 2024/04/17. This series removes the use of VLAs from code built for Windows for all 3 toolchains. If there are additional opportunities to convert VLAs to regular C arrays please provide the details for incorporation into the series. MSVC does not support VL

[PATCH v14 02/81] eal/linux: remove use of VLAs

2025-01-10 Thread Andre Muezerie
From: Konstantin Ananyev 1) ./lib/eal/linux/eal_interrupts.c:1073:16 : warning: ISO C90 forbids variable length array ‘events’ MSVC does not support VLAs. Use alloca() to allocate the memory on the stack. 2) ./lib/eal/linux/eal_interrupts.c:1319:16 : warning: ISO C90 forbids variable le

[PATCH v14 01/81] eal: include header required for alloca

2025-01-10 Thread Andre Muezerie
From: Tyler Retzlaff Include alloca.h for Linux and malloc.h for Windows to get declaration of alloca(). Signed-off-by: Tyler Retzlaff --- lib/eal/freebsd/include/rte_os.h | 1 + lib/eal/linux/include/rte_os.h | 1 + lib/eal/windows/include/rte_os.h | 1 + 3 files changed, 3 insertions(+) d

[PATCH v14 03/81] eal/common: remove use of VLAs

2025-01-10 Thread Andre Muezerie
From: Konstantin Ananyev 1) ../lib/eal/common/eal_common_proc.c:695:15 : warning: variable length array used As msg->num_fds should not exceed RTE_MP_MAX_FD_NUM, replaced it with fixed size array. Signed-off-by: Konstantin Ananyev Acked-by: Stephen Hemminger --- lib/eal/common/eal_common

[PATCH v14 04/81] ethdev: remove use of VLAs for Windows built code

2025-01-10 Thread Andre Muezerie
From: Konstantin Ananyev 1) ./lib/ethdev/rte_ethdev.c:3244:16 : warning: ISO C90 forbids variable length array ‘xstats_names’ 2) ./lib/ethdev/rte_ethdev.c:3345:17 : warning: ISO C90 forbids variable length array ‘ids_copy’ 3) ./lib/ethdev/rte_ethdev.c:3538:16 : warning: ISO C90 forbid

[PATCH v14 06/81] hash/thash: remove use of VLAs for Windows built

2025-01-10 Thread Andre Muezerie
From: Konstantin Ananyev 1) ./lib/hash/rte_thash.c:774:9 : warning: ISO C90 forbids variable length array ‘tmp_tuple’ The tuple can exceed sizeof(union rte_thash_tuple), for example if any tunneling header is used in the RSS hash calculation. The longest RSS hash key currently supported is

[PATCH v14 19/81] test: remove use of VLAs for Windows built code in bitset tests

2025-01-10 Thread Andre Muezerie
1) MSVC does not support VLAs. Use standard fixed C arrays of maximum size required instead. 2) ../usr/lib/gcc/x86_64-redhat-linux/13/include/emmintrin.h:742:8: error: array subscript 9 is outside array bounds of 'uint64_t[16]' {aka 'long unsigned int[16]'} [-Werror=array-bounds=] 3695

[PATCH v14 17/81] net/mlx5: remove use of VLAs for Windows built code

2025-01-10 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/meson.build | 8 drivers/net/mlx5/mlx5.c

[PATCH v14 16/81] common/mlx5: remove use of VLAs for Windows built code

2025-01-10 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/common/meson.build | 8 drivers/common/mlx5

[PATCH v14 23/81] app/graph: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/graph/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/app/graph/meson.build b/app/graph/meson.build index 344e4a418f..28ad533498 100644 ---

[PATCH v14 61/81] lib/ptr_compress: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/ptr_compress/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/ptr_compress/meson.build b/lib/ptr_compress/meson.build index e92706a45f..7

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

2025-01-10 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 Reviewed-by: Bruce Richardson --- drivers/net/i40e/i40e_testpmd.c | 5 ++-

[PATCH v14 55/81] lib/mldev: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/mldev/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/mldev/meson.build b/lib/mldev/meson.build index 2c933baad6..d49302f021 100644 ---

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

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, replace VLAs with standard C arrays. Signed-off-by: Andre Muezerie --- lib/hash/meson.build | 8 lib/hash/rte_thash_gf2_poly_math.c | 9 - 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/lib/hash/meson.build b/lib/hash/me

[PATCH v14 25/81] app/test-compress-perf: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/test-compress-perf/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/app/test-compress-perf/meson.build b/app/test-compress-perf/meson.build

[PATCH v14 32/81] lib/argparse: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/argparse/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/argparse/meson.build b/lib/argparse/meson.build index b6a08ca049..3ef537b958 10

[PATCH v14 60/81] lib/port: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/port/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/port/meson.build b/lib/port/meson.build index b597772872..4a09af361f 100644 --- a/l

[PATCH v14 22/81] app/dumpcap: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/dumpcap/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/app/dumpcap/meson.build b/app/dumpcap/meson.build index 69c016c780..675f5d7448 10064

[PATCH v14 64/81] lib/rib: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/rib/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/rib/meson.build b/lib/rib/meson.build index e98f708481..58fcb825a8 100644 --- a/lib/

[PATCH v14 30/81] app/test-regex: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/test-regex/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/app/test-regex/meson.build b/app/test-regex/meson.build index e3ba060e55..a0c5bce

[PATCH v14 18/81] build: enable vla warnings on Windows built code

2025-01-10 Thread Andre Muezerie
From: Tyler Retzlaff MSVC does not support optional C11 VLAs. When building for Windows enable -Wvla so that mingw and clang also fail if a VLA is used. Signed-off-by: Tyler Retzlaff Acked-by: Bruce Richardson Acked-by: Chengwen Feng --- config/meson.build | 4 1 file changed, 4 inserti

[PATCH v14 24/81] app/test-cmdline: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/test-cmdline/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/app/test-cmdline/meson.build b/app/test-cmdline/meson.build index 6027f67919..0

[PATCH v14 28/81] app/test-mldev: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/test-mldev/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/app/test-mldev/meson.build b/app/test-mldev/meson.build index 2922888e9f..06fba62

[PATCH v14 58/81] lib/pcapng: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/pcapng/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/pcapng/meson.build b/lib/pcapng/meson.build index 4549925d41..0ccaf2dcfd 100644 -

[PATCH v14 63/81] lib/reorder: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/reorder/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/reorder/meson.build b/lib/reorder/meson.build index 03aed53d90..5197da9298 10064

[PATCH v14 57/81] lib/node: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/node/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/node/meson.build b/lib/node/meson.build index 0bed97a96c..4c7361a53a 100644 --- a/l

[PATCH v14 29/81] app/test-pipeline: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/test-pipeline/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/app/test-pipeline/meson.build b/app/test-pipeline/meson.build index 3add6b637b

[PATCH v14 33/81] lib/bbdev: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/bbdev/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/bbdev/meson.build b/lib/bbdev/meson.build index 07685e7578..542372d29b 100644 ---

[PATCH v14 26/81] app/test-fib: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/test-fib/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/app/test-fib/meson.build b/app/test-fib/meson.build index eb36772cf3..f639171068 10

[PATCH v14 31/81] app/test-security-perf: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/test-security-perf/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/app/test-security-perf/meson.build b/app/test-security-perf/meson.build

[PATCH v14 34/81] lib/bitratestats: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/bitratestats/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/bitratestats/meson.build b/lib/bitratestats/meson.build index ede7e0a579..7

[PATCH v14 62/81] lib/rawdev: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/rawdev/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/rawdev/meson.build b/lib/rawdev/meson.build index 7dfc3d5cf9..5e60255676 100644 -

[PATCH v14 38/81] lib/cryptodev: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/cryptodev/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/cryptodev/meson.build b/lib/cryptodev/meson.build index 4734acf321..02bf7cec8e

[PATCH v14 37/81] lib/compressdev: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/compressdev/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/compressdev/meson.build b/lib/compressdev/meson.build index c80295dc0d..b354

[PATCH v14 35/81] lib/cfgfile: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/cfgfile/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/cfgfile/meson.build b/lib/cfgfile/meson.build index 88eb819856..afc0a87c00 10064

[PATCH v14 27/81] app/test-gpudev: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/test-gpudev/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/app/test-gpudev/meson.build b/app/test-gpudev/meson.build index 17bdef3646..9d11

[PATCH v14 36/81] lib/cmdline: add compile warning about use of VLAs

2025-01-10 Thread Andre Muezerie
MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- lib/cmdline/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/lib/cmdline/meson.build b/lib/cmdline/meson.build index 63fb69100d..da7a578d05 10064

  1   2   >