Re: [PATCH RFC v7 1/5] ptr_ring: array based FIFO for pointers

2016-06-03 Thread Jesper Dangaard Brouer
On Thu, 2 Jun 2016 19:08:18 +0300 "Michael S. Tsirkin" wrote: > A simple array based FIFO of pointers. Intended for net stack which > commonly has a single consumer/producer. > > Signed-off-by: Michael S. Tsirkin > --- > include/linux/ptr_ring.h | 264 >

Re: [PATCH RFC v7 1/5] ptr_ring: array based FIFO for pointers

2016-06-03 Thread Jesper Dangaard Brouer
On Thu, 2 Jun 2016 19:08:18 +0300 "Michael S. Tsirkin" wrote: > A simple array based FIFO of pointers. Intended for net stack which > commonly has a single consumer/producer. > > Signed-off-by: Michael S. Tsirkin > --- > include/linux/ptr_ring.h | 264 >

[PATCH RFC v7 1/5] ptr_ring: array based FIFO for pointers

2016-06-02 Thread Michael S. Tsirkin
A simple array based FIFO of pointers. Intended for net stack which commonly has a single consumer/producer. Signed-off-by: Michael S. Tsirkin --- include/linux/ptr_ring.h | 264 +++ 1 file changed, 264 insertions(+) create mode

[PATCH RFC v7 1/5] ptr_ring: array based FIFO for pointers

2016-06-02 Thread Michael S. Tsirkin
A simple array based FIFO of pointers. Intended for net stack which commonly has a single consumer/producer. Signed-off-by: Michael S. Tsirkin --- include/linux/ptr_ring.h | 264 +++ 1 file changed, 264 insertions(+) create mode 100644