Re: [dpdk-dev] [PATCH v5 1/8] lib/ring: add zero copy APIs

2020-10-27 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. > > S

[dpdk-dev] [PATCH v5 1/8] lib/ring: add zero copy APIs

2020-10-24 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