Re: [PATCH] rust: support DPDK API

2025-03-08 Thread Etelson, Gregory
Hello Igor, Hi Gregory! As a DPDK as well as a Rust user, I'm quite excited about this patch. I'm wondering though, is DPDK getting an official Rust API? I'm subscribed to dev and user mailing lists, and haven't seen any announcements - did I miss something? Bellow are some stylistic suggestio

[PATCH v2] rust: support raw DPDK API

2025-03-08 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

Dev branch on next-dts

2025-03-08 Thread Patrick Robb
Hi Thomas/David, We still have a couple patchseries under review for next-dts which we intend to push to next-dts/for-main, to be pulled for 25.03. At the same time, there are some series which we are working on but are now pushed to the 25.07 release. We want to continue to work on these over the

Re: [PATCH v2 1/2] lib/hash: initialize __m128i data type in a portable way

2025-03-08 Thread David Marchand
On Tue, Mar 4, 2025 at 10:53 PM Andre Muezerie wrote: > > The mechanism used to initialize an __m128i data type in rte_thash.h is > non-portable and MSVC does not like it. It clearly is not doing what > is desired: > > ..\lib\hash\rte_thash.h(38): warning C4305: 'initializing': > truncation fr

[PATCH] config/arm: add crypto to cn9k soc

2025-03-08 Thread pbhagavatula
From: Pavan Nikhilesh Add crypto as extra march feature to cn9k soc. Signed-off-by: Pavan Nikhilesh --- config/arm/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/config/arm/meson.build b/config/arm/meson.build index 7f85b088c9..a97a28ebb7 100644 --- a/config/arm/meson.build ++

[PATCH] config/arm: fix march features not being set

2025-03-08 Thread pbhagavatula
From: Pavan Nikhilesh Fix extra_march_features not being added to mcpu flags when SoC configuration advertises them. Fixes: c02c01dbf907 ("config/arm: prefer strict use of -mcpu if supported") Signed-off-by: Pavan Nikhilesh --- config/arm/meson.build | 11 --- 1 file changed, 8 insert