Re: [RFC PATCH] add rust binding support to DPDK

2025-04-17 Thread Van Haaren, Harry
>From: Owen Hilyard >Sent: Sunday, April 13, 2025 6:09 PM >To: Etelson, Gregory; Van Haaren, Harry >Cc: Richardson, Bruce; dev@dpdk.org >Subject: Re: [RFC PATCH] add rust binding support to DPDK > >Hello all, > >I wanted to chime in as someone who uses DPDK from Rus

Re: [RFC PATCH] add rust binding support to DPDK

2025-04-13 Thread Owen Hilyard
Hello all, I wanted to chime in as someone who uses DPDK from Rust in quite a few projects. No snips so the conversation can continue past me for things I don't comment on. Hello Harry, My concern is how to properly maintain Rust crate once DPDK starts to implement it's own API.

Re: [RFC PATCH] add rust binding support to DPDK

2025-04-13 Thread Etelson, Gregory
Hello Harry, My concern is how to properly maintain Rust crate once DPDK starts to implement it's own API. I'm not really sure what is meant here. I don't understand what "own" word refers to? I see it like this: - DPDK has the public C API exported (and that stays the same as today, with A

Re: [RFC PATCH] add rust binding support to DPDK

2025-04-11 Thread Van Haaren, Harry
> From: Etelson, Gregory > Sent: Friday, April 11, 2025 4:39 PM > To: Van Haaren, Harry > Cc: Richardson, Bruce; dev@dpdk.org > Subject: Re: [RFC PATCH] add rust binding support to DPDK > > Hello Bruce & Harry, > > > > > > >> My concern is how

Re: [RFC PATCH] add rust binding support to DPDK

2025-04-11 Thread Etelson, Gregory
Hello Bruce & Harry, My concern is how to properly maintain Rust crate once DPDK starts to implement it's own API. I'm not really sure what is meant here. I don't understand what "own" word refers to? I see it like this: - DPDK has the public C API exported (and that stays the same as to

Re: [RFC PATCH] add rust binding support to DPDK

2025-04-11 Thread Van Haaren, Harry
> From: Etelson, Gregory > Sent: Thursday, April 10, 2025 6:28 AM > To: Richardson, Bruce > Cc: dev@dpdk.org > Subject: Re: [RFC PATCH] add rust binding support to DPDK > > Hello Bruce, Hi Bruce & Gregory, > > Add a Cargo.toml file in the root folder and a numbe

Re: [RFC PATCH] add rust binding support to DPDK

2025-04-09 Thread Etelson, Gregory
Hello Bruce, Add a Cargo.toml file in the root folder and a number of other scripts and rust-related files into buildtools/rust, which then enables DPDK to be cloned and built as a rust crate - all-be-it one with only two functions: rte_eal_init and rte_eal_cleanup. Signed-off-by: Bruce Richard

Re: [RFC PATCH] add rust binding support to DPDK

2025-04-08 Thread Bruce Richardson
On Tue, Apr 08, 2025 at 03:58:38PM +0100, Bruce Richardson wrote: > Add a Cargo.toml file in the root folder and a number of other scripts > and rust-related files into buildtools/rust, which then enables DPDK to > be cloned and built as a rust crate - all-be-it one with only two > functions: rte_e

[RFC PATCH] add rust binding support to DPDK

2025-04-08 Thread Bruce Richardson
Add a Cargo.toml file in the root folder and a number of other scripts and rust-related files into buildtools/rust, which then enables DPDK to be cloned and built as a rust crate - all-be-it one with only two functions: rte_eal_init and rte_eal_cleanup. Signed-off-by: Bruce Richardson --- This R