[PATCH 0/2] fix the problem of dma-perf infinite loop

2025-03-20 Thread Dengdui Huang
After CPU isolation is configured, an infinite loop occurs when dma-perf is executed using the default config file. This patchset fix it. Dengdui Huang (2): eal: fix wake a incorrect lcore app/dma-perf: fix infinite loop app/test-dma-perf/benchmark.c | 5 - lib/eal/unix/eal_unix_thread

[PATCH 1/2] eal: fix wake a incorrect lcore

2025-03-20 Thread Dengdui Huang
If the core is not used in the rte, we can't wake it up to work. The worker_id may come from user input. So it is necessary to verify it. Fixes: a95d70547c57 ("eal: factorize lcore main loop") Cc: sta...@dpdk.org Signed-off-by: Dengdui Huang --- lib/eal/unix/eal_unix_thread.c | 3 +++ lib/eal/w

Re: [PATCH v5 14/14] net/zxdh: fix debugging errors

2025-03-20 Thread Bingbin Chen
>> +struct zxdh_ifc_hw_np_stats_bits { >> +uint8_t rx_unicast_pkts[0x40]; >> +uint8_t tx_unicast_pkts[0x40]; >> +uint8_t rx_unicast_bytes[0x40]; >> +uint8_t tx_unicast_bytes[0x40]; >> +uint8_t rx_multicast_pkts[0x40]; >> +uint8_t tx_multicast_pkts[0x40]; >> +uint

[PATCH v1] net/i40e: updated latest recommended matching list

2025-03-20 Thread hailinx
Signed-off-by: hailinx --- doc/guides/nics/i40e.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst index 35585efc44..ba592d23fe 100644 --- a/doc/guides/nics/i40e.rst +++ b/doc/guides/nics/i40e.rst @@ -104,6 +104,8 @@ For X710/XL710/XXV7

[PATCH v1] net/ice: updated latest recommended matching list

2025-03-20 Thread hailinx
Signed-off-by: hailinx --- doc/guides/nics/ice.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index 2603ef42d6..77985ae5a2 100644 --- a/doc/guides/nics/ice.rst +++ b/doc/guides/nics/ice.rst @@ -83,6 +83,8 @@ are listed in the Tested Pla

Re: [RFC v4 5/8] build: generate symbol maps

2025-03-20 Thread Andre Muezerie
On Wed, Mar 19, 2025 at 06:12:37PM +0100, David Marchand wrote: > On Wed, Mar 19, 2025 at 5:19 PM Stephen Hemminger > wrote: > > > > On Mon, 17 Mar 2025 16:43:01 +0100 > > David Marchand wrote: > > > > > Rather than maintain a file in parallel of the code, symbols to be > > > exported can be mark

Re: [PATCH v5 14/14] net/zxdh: fix debugging errors

2025-03-20 Thread Stephen Hemminger
On Wed, 19 Mar 2025 16:58:08 +0800 Bingbin Chen wrote: > Fix zxdh driver packet sending and receiving errors. > > Signed-off-by: Bingbin Chen The term fix in commit message implies that there will be a Fixes: tag that refers to a previous commit that was buggy. > --- > drivers/net/zxdh/zxdh_

Re: [PATCH v3 5/6] net/macb: fix tab errors in meson.build file

2025-03-20 Thread Stephen Hemminger
On Tue, 10 Dec 2024 07:08:35 + Wencheng Li wrote: > Replace tabs with spaces to resolve indentation > issues in meson.build file. > > Fixes: 97fd6a929cf8 ("net/macb: add new driver") > Cc: liwench...@phytium.com.cn > > Signed-off-by: Wencheng Li > --- Fix the formatting in the original pa

Re: [PATCH v2 1/1] net/af_packet: register supported param fanout mode

2025-03-20 Thread Stephen Hemminger
On Thu, 20 Mar 2025 16:37:07 +0800 Shaokai Zhang wrote: > diff --git a/drivers/net/af_packet/rte_eth_af_packet.c > b/drivers/net/af_packet/rte_eth_af_packet.c > index ab34285ed9..55171944cc 100644 > --- a/drivers/net/af_packet/rte_eth_af_packet.c > +++ b/drivers/net/af_packet/rte_eth_af_packet.c

Re: Dpdk-pdump not capturing packet for vmxnet3 device

2025-03-20 Thread Stephen Hemminger
On Thu, 20 Mar 2025 09:38:16 + "Rajesh Goel (rajegoel)" wrote: > Thanks Stephen. > > I checked this module is not present in 20.11 dpdk version, but its in 23.11 > But can you suggest if I need to port this back to 20.11, any necessary steps > I can follow or any dependencies with the new v

[PATCH] crypto/qat: fix out-of-place header bytes in aead raw api

2025-03-20 Thread Arkadiusz Kusztal
This commit fixes a problem with overwriting data in the OOP header in RAW API crypto processing when using AEAD algorithms. Fixes: 85fec6fd9674 ("crypto/qat: unify raw data path functions") Cc: sta...@dpdk.org Signed-off-by: Arkadiusz Kusztal --- drivers/crypto/qat/dev/qat_crypto_pmd_gens.h |

[PATCH v1 1/2] maintainers: update for crypto performance test

2025-03-20 Thread Brian Dooley
Replacing myself as Crypto Perf App maintainer with Kai Ji. Signed-off-by: Brian Dooley --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 82f6e2f917..cdcea9aa72 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1936,7 +1936,7 @@ F: a

[PATCH] doc: add tested platforms with NVIDIA NICs

2025-03-20 Thread Raslan Darawsheh
Add tested platforms with NVIDIA NICs to the 25.03 release notes. Signed-off-by: Raslan Darawsheh --- doc/guides/rel_notes/release_25_03.rst | 111 + 1 file changed, 111 insertions(+) diff --git a/doc/guides/rel_notes/release_25_03.rst b/doc/guides/rel_notes/release_25_

[PATCH v2 0/1] net/af_packet: register supported param fanout mode

2025-03-20 Thread Shaokai Zhang
*** BLURB HERE *** Shaokai Zhang (1): net/af_packet: register supported param fanout mode drivers/net/af_packet/rte_eth_af_packet.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) -- 2.47.1.windows.2

Re: [PATCH v4 09/11] net: simplify build-time logic for x86

2025-03-20 Thread David Marchand
Hello Bruce, On Wed, Mar 19, 2025 at 6:30 PM Bruce Richardson wrote: > @@ -211,7 +211,7 @@ avx512_vpclmulqdq_init(void) > static const rte_net_crc_handler * > sse42_pclmulqdq_get_handlers(void) > { > -#ifdef CC_X86_64_SSE42_PCLMULQDQ_SUPPORT > +#ifdef RTE_ARCH_X86_64 > if (SSE42_PCLMUL