Re: [PATCH 0/2] net/mlx5: flow counter pool fixes

2025-05-11 Thread Raslan Darawsheh
Hi, On 25/04/2025 10:41 PM, Dariusz Sosnowski wrote: This patch series includes several fixes for flow counter pool used with HW Steering flow engine. Dariusz Sosnowski (2): net/mlx5: fix counter pool init error propagation net/mlx5: fix counter service thread init drivers/net/mlx5/ml

Re: [PATCH] net/mlx5: validate GTP PSC QFI width

2025-05-11 Thread Raslan Darawsheh
Hi, On 25/04/2025 10:35 PM, Dariusz Sosnowski wrote: Add missing validation of GTP PSC QFI flow field width for modify field flow action. Fixes: 0f4aa72b99da ("net/mlx5: support flow modify field with HWS") Cc: suanmi...@nvidia.com Cc: sta...@dpdk.org Signed-off-by: Dariusz Sosnowski Acked-b

Re: [PATCH] net/mlx5: fix modify field action on group 0

2025-05-11 Thread Raslan Darawsheh
Hi, On 25/04/2025 10:32 PM, Dariusz Sosnowski wrote: HW modify header commands generated for multiple modify field flow actions, which modify/access the same packet fields do not have to be separated by NOPs when used on group 0. This is because: - On group > 0, HW uses Modify Header Pattern o

Re: [PATCH v2] net/mlx5: mitigate the Tx queue parameter adjustment

2025-05-11 Thread Raslan Darawsheh
Hi, On 24/04/2025 4:31 PM, Viacheslav Ovsiienko wrote: he DPDK API rte_eth_tx_queue_setup() has a parameter nb_tx_desc specifying the desired queue capacity, measured in packets. The ConnectX NIC series has a hardware-imposed queue size limit of 32K WQEs (packet hardware descriptors). Typicall

Re: [PATCH v1] net/mlx5: support multi-host lag probe

2025-05-11 Thread Raslan Darawsheh
Hi, On 11/03/2025 10:31 AM, Rongwei Liu wrote: Under multi-host environments, the NIC exports total 4 ports, and each host get 2 ports. The 2 ports' identifier is uncontinous now. It causes the lag port array access violation. Increase the lag port array and allow the hole in middle. Signed-o

Re: [PATCH] net/mlx5: add GRE as L4 layer for entropy calculation

2025-05-11 Thread Raslan Darawsheh
Hi, On 26/02/2025 11:51 AM, Yaniv Rosner wrote: Signed-off-by: Yaniv Rosner Acked-by: Bing Zhao --- drivers/net/mlx5/mlx5_flow_hw.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/mlx5/mlx5_flow_hw.c b/drivers/net/mlx5/mlx5_flow_hw.c index e72b87d70f..27ee9d6cd3 100644 -

Re: [PATCH] mem: fix infinite loop

2025-05-11 Thread lihuisong (C)
LGTM, Acked-by: Huisong Li 在 2025/4/2 20:42, Dengdui Huang 写道: When the process address space is insufficient, mmap will fail, which will cause an infinite loop. This pathc fix it. Fixes: c4b89ecb64ea ("eal: introduce memory management wrappers") Cc: sta...@dpdk.org Signed-off-by: Dengdui Hu

Re: [PATCH 0/2] add debug capabilities to ipool

2025-05-11 Thread Raslan Darawsheh
Hi, On 24/03/2025 10:18 AM, Shani Peretz wrote: Enhanced ipool debugging: Added new log component and verbosity levels for operations. Introduced a bitmap in debug mode to track allocations/deallocations, preventing doubles in per-core cache mode. Shani Peretz (2): net/mlx5: add ipool de