RE: 24.11.2 patches review and test

2025-04-20 Thread Xu, HailinX
> -Original Message- > From: Kevin Traynor > Sent: Friday, March 28, 2025 6:15 PM > To: sta...@dpdk.org > Cc: dev@dpdk.org; Abhishek Marathe ; > Ali Alnubani ; David Christensen > ; Hemant Agrawal ; > Stokes, Ian ; Jerin Jacob ; > Mcnamara, John ; Ju-Hyoung Lee > ; Kevin Traynor ; Luca > B

[PATCH] test/crypto: add test case for modex group 24

2025-04-20 Thread Gowrishankar Muthukrishnan
Add test case for modex group 24. Signed-off-by: Gowrishankar Muthukrishnan --- app/test/test_cryptodev_asym.c | 16 ++ app/test/test_cryptodev_mod_test_vectors.h | 227 + 2 files changed, 243 insertions(+) diff --git a/app/test/test_cryptodev_asym.c b/app/test/

[PATCH] test/crypto: increment dequeue timeout

2025-04-20 Thread Gowrishankar Muthukrishnan
Increment dequeue timeout to allow implementations taking longer cycles. Signed-off-by: Gowrishankar Muthukrishnan --- app/test/test_cryptodev_asym.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c index 6b74dd9a

Re: [PATCH] rust: RFC/demo of safe API for Dpdk Eal, Eth and Rxq

2025-04-20 Thread Gregory Etelson
Hello Harry, I implemented a working echo server with your API. The code is here: https://github.com/getelson-at-mellanox/rdpdk/tree/safe-q Several changes: * DPDK configuration is split to 3 mandatory steps: * port configuration in Port::configure(&mut self, rxq_num: u16, txq_num: u16) -