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

2016-06-14 Thread Jesper Dangaard Brouer
On Mon, 13 Jun 2016 23:54:31 +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 Acked-by: Jesper Dangaard Brouer

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

2016-06-14 Thread Jesper Dangaard Brouer
On Mon, 13 Jun 2016 23:54:31 +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 Acked-by: Jesper Dangaard Brouer -- Best regards, Jesper Dangaard Brouer

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

2016-06-13 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 v8 1/5] ptr_ring: array based FIFO for pointers

2016-06-13 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