Re: [dpdk-dev] [PATCH] event/dsw: use custom element size ring for control

2020-01-27 Thread Jerin Jacob
On Wed, Jan 22, 2020 at 10:36 AM Honnappa Nagarahalli wrote: > > > > > Subject: [PATCH] event/dsw: use custom element size ring for control > > > > Replace DSW's use of regular DPDK rings (and code for packing/unpacking > > control messages into void pointers) with custom size rings. > > > > In a

Re: [dpdk-dev] [PATCH] event/dsw: use custom element size ring for control

2020-01-21 Thread Honnappa Nagarahalli
> Subject: [PATCH] event/dsw: use custom element size ring for control > > Replace DSW's use of regular DPDK rings (and code for packing/unpacking > control messages into void pointers) with custom size rings. > > In addition to cleaner code, this change allows DSW to support up to the > eventd

[dpdk-dev] [PATCH] event/dsw: use custom element size ring for control

2020-01-20 Thread Mattias Rönnblom
Replace DSW's use of regular DPDK rings (and code for packing/unpacking control messages into void pointers) with custom size rings. In addition to cleaner code, this change allows DSW to support up to the eventdev API's maximum of 255 ports by tweaking DSW_MAX_PORTS. Signed-off-by: Mattias Rönnb