Re: [dpdk-dev] [PATCH 07/17] net/virtio: implement transmit path for packed queues

2018-03-25 Thread Jason Wang
On 2018年03月16日 23:21, Jens Freimann wrote: This implements the transmit path for devices with support for Virtio 1.1. Add the feature bit for Virtio 1.1 and enable code to add buffers to vring and mark descriptors as available. This is based on a patch by Yuanhan Liu. Signed-off-by: Jens Fre

Re: [dpdk-dev] [PATCH 07/17] net/virtio: implement transmit path for packed queues

2018-03-19 Thread Jens Freimann
On Mon, Mar 19, 2018 at 05:04:43PM +0800, Tiwei Bie wrote: On Fri, Mar 16, 2018 at 04:21:10PM +0100, Jens Freimann wrote: [...] diff --git a/drivers/net/virtio/Makefile b/drivers/net/virtio/Makefile index 6c2c996..aa1e600 100644 --- a/drivers/net/virtio/Makefile +++ b/drivers/net/virtio/Makefile

Re: [dpdk-dev] [PATCH 07/17] net/virtio: implement transmit path for packed queues

2018-03-19 Thread Tiwei Bie
On Fri, Mar 16, 2018 at 04:21:10PM +0100, Jens Freimann wrote: [...] > diff --git a/drivers/net/virtio/Makefile b/drivers/net/virtio/Makefile > index 6c2c996..aa1e600 100644 > --- a/drivers/net/virtio/Makefile > +++ b/drivers/net/virtio/Makefile > @@ -28,6 +28,7 @@ LIBABIVER := 1 > SRCS-$(CONFIG_R

[dpdk-dev] [PATCH 07/17] net/virtio: implement transmit path for packed queues

2018-03-16 Thread Jens Freimann
This implements the transmit path for devices with support for Virtio 1.1. Add the feature bit for Virtio 1.1 and enable code to add buffers to vring and mark descriptors as available. This is based on a patch by Yuanhan Liu. Signed-off-by: Jens Freiman --- drivers/net/virtio/Makefile