Re: [dpdk-dev] [PATCH 3/5] eventdev: add ring structure for events

2017-06-30 Thread Bruce Richardson
On Mon, Jun 12, 2017 at 10:45:47AM +0530, Jerin Jacob wrote: > -Original Message- > > Date: Wed, 7 Jun 2017 14:36:18 +0100 > > From: Bruce Richardson > > To: dev@dpdk.org > > CC: olivier.m...@6wind.com, jerin.ja...@caviumnetworks.com, Bruce > > Richardson > > Subject: [PATCH 3/5] eventde

Re: [dpdk-dev] [PATCH 3/5] eventdev: add ring structure for events

2017-06-12 Thread Bruce Richardson
On Mon, Jun 12, 2017 at 10:45:47AM +0530, Jerin Jacob wrote: > -Original Message- > > Date: Wed, 7 Jun 2017 14:36:18 +0100 > > From: Bruce Richardson > > To: dev@dpdk.org > > CC: olivier.m...@6wind.com, jerin.ja...@caviumnetworks.com, Bruce > > Richardson > > Subject: [PATCH 3/5] eventde

Re: [dpdk-dev] [PATCH 3/5] eventdev: add ring structure for events

2017-06-11 Thread Jerin Jacob
-Original Message- > Date: Wed, 7 Jun 2017 14:36:18 +0100 > From: Bruce Richardson > To: dev@dpdk.org > CC: olivier.m...@6wind.com, jerin.ja...@caviumnetworks.com, Bruce > Richardson > Subject: [PATCH 3/5] eventdev: add ring structure for events > X-Mailer: git-send-email 2.9.4 > > Add

[dpdk-dev] [PATCH 3/5] eventdev: add ring structure for events

2017-06-07 Thread Bruce Richardson
Add in a new rte_event_ring structure type and functions to allow events to be passed core to core. This is needed because the standard rte_ring type only works on pointers, while for events, we want to copy the entire, 16B events themselves - not just pointers to them. The code makes extensive use