Re: [dpdk-dev] [PATCH v3 01/41] pipeline: add new SWX pipeline type

2020-09-10 Thread Bruce Richardson
On Wed, Sep 09, 2020 at 07:52:39PM +, Dumitrescu, Cristian wrote: > Hi Stephen, > > > -Original Message- > > From: Stephen Hemminger > > Sent: Wednesday, September 9, 2020 8:06 PM > > To: Dumitrescu, Cristian > > Cc: dev@dpdk.org > > Subject

Re: [dpdk-dev] [PATCH v3 01/41] pipeline: add new SWX pipeline type

2020-09-09 Thread Dumitrescu, Cristian
Hi Stephen, > -Original Message- > From: Stephen Hemminger > Sent: Wednesday, September 9, 2020 8:06 PM > To: Dumitrescu, Cristian > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3 01/41] pipeline: add new SWX pipeline > type > > On Tue, 8 Sep 202

Re: [dpdk-dev] [PATCH v3 01/41] pipeline: add new SWX pipeline type

2020-09-09 Thread Stephen Hemminger
On Tue, 8 Sep 2020 21:17:50 +0100 Cristian Dumitrescu wrote: > +/* > + * Pipeline. > + */ > +struct rte_swx_pipeline { > + int build_done; > + int numa_node; > +}; > + > + Is int the right type for these. build_done seems like a boolean and numa_node should be unsigned?

[dpdk-dev] [PATCH v3 01/41] pipeline: add new SWX pipeline type

2020-09-08 Thread Cristian Dumitrescu
Add new improved Software Switch (SWX) pipeline type that supports dynamically-defined packet headers, meta-data, actions and pipelines. Actions and pipelines are defined through instructions. Signed-off-by: Cristian Dumitrescu --- lib/librte_pipeline/meson.build | 10 ++- lib/librt