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

2025-03-22 Thread Ji, Kai
Acked-by: Kai Ji From: Dooley, Brian Sent: 20 March 2025 14:21 To: Thomas Monjalon Cc: dev@dpdk.org ; gak...@marvell.com ; Ji, Kai ; Dooley, Brian Subject: [PATCH v1 1/2] maintainers: update for crypto performance test Replacing myself as Crypto Perf App main

Re: [PATCH v3 4/6] net/macb: zero ol_flags in each recv function

2025-03-22 Thread Stephen Hemminger
On Tue, 10 Dec 2024 07:07:59 + Wencheng Li wrote: > Because macb driver does not support hardware offload, ol_flags > field of mbuf structure needs to be zeroed in recv function. > > Fixes: 97fd6a929cf8 ("net/macb: add new driver") > Cc: liwench...@phytium.com.cn > > Signed-off-by: Wencheng

Re: [PATCH v4] rust: support raw DPDK API

2025-03-22 Thread Bruce Richardson
On Sat, Mar 22, 2025 at 12:59:11PM +0200, Gregory Etelson wrote: > The patch converts include files with DPDK API to RUST and binds new > RUST API files into raw module under dpdk crate. > > The RUST files and DPDK libraries build from C sources > allow creation of DPDK application in RUST. > > R

[PATCH v6 07/14] net/zxdh: get flow tables resources

2025-03-22 Thread Bingbin Chen
Implement the flow tables resources get operation by agent channel. Signed-off-by: Bingbin Chen --- drivers/net/zxdh/zxdh_ethdev.c | 13 + drivers/net/zxdh/zxdh_ethdev.h | 1 + drivers/net/zxdh/zxdh_np.c | 492 + drivers/net/zxdh/zxdh_np.h | 282 +++

RE: Clarification on Minimum Supported Kernel Version for DPDK

2025-03-22 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Friday, 21 March 2025 16.53 > > On Fri, 21 Mar 2025 07:28:45 +0100 > Morten Brørup wrote: > > > @Kevin, @Stephen, @Bruce, > > > > I cannot reliably answer Cody's question, and it may need further > discussion. > > > > What is

[PATCH v4] rust: support raw DPDK API

2025-03-22 Thread Gregory Etelson
The patch converts include files with DPDK API to RUST and binds new RUST API files into raw module under dpdk crate. The RUST files and DPDK libraries build from C sources allow creation of DPDK application in RUST. RUST DPDK application must specify the `dpdk` crate as dependency in Cargo.toml

[PATCH v2 2/2] net/mlx5: enhance log file path

2025-03-22 Thread Yang Ming
The directory /var/log may not be writable in a container's read-only mode. To address this issue, use the DPDK runtime directory as an alternative when /var/log is not writable. Cc: bi...@nvidia.com Cc: dsosnow...@nvidia.com Cc: step...@networkplumber.org Cc: julien.meun...@nokia.com Signed-off-