Re: [dpdk-dev] [PATCH v3 2/5] lib/ring: add zero copy APIs

2020-10-24 Thread Honnappa Nagarahalli
Hi Konstantin, Thank you for the quick comments. Please see the responses inline. > > > > > > Add zero-copy APIs. These APIs provide the capability to copy the data > > to/from the ring memory directly, without having a temporary copy (for > > ex: an array of mbufs on the stack). Use c

Re: [dpdk-dev] [PATCH v3 2/5] lib/ring: add zero copy APIs

2020-10-23 Thread Ananyev, Konstantin
> > Add zero-copy APIs. These APIs provide the capability to > copy the data to/from the ring memory directly, without > having a temporary copy (for ex: an array of mbufs on > the stack). Use cases that involve copying large amount > of data to/from the ring can benefit from these APIs. LGTM i

[dpdk-dev] [PATCH v3 2/5] lib/ring: add zero copy APIs

2020-10-22 Thread Honnappa Nagarahalli
Add zero-copy APIs. These APIs provide the capability to copy the data to/from the ring memory directly, without having a temporary copy (for ex: an array of mbufs on the stack). Use cases that involve copying large amount of data to/from the ring can benefit from these APIs. Signed-off-by: Honnap