Re: [dpdk-dev] [PATCH v2 3/3] net/virtio: improve batching in mergeable path

2018-12-19 Thread Maxime Coquelin
On 12/19/18 10:47 AM, Jens Freimann wrote: On Tue, Dec 11, 2018 at 02:48:04PM +0100, Maxime Coquelin wrote: This patch improves both descriptors dequeue and refill, by using the same bathing strategy as done in in-order path. s/bathing/batching/ Signed-off-by: Maxime Coquelin --- driver

Re: [dpdk-dev] [PATCH v2 3/3] net/virtio: improve batching in mergeable path

2018-12-19 Thread Maxime Coquelin
On 12/19/18 12:18 PM, Tiwei Bie wrote: On Tue, Dec 11, 2018 at 02:48:04PM +0100, Maxime Coquelin wrote: This patch improves both descriptors dequeue and refill, by using the same bathing strategy as done in in-order path. Signed-off-by: Maxime Coquelin --- drivers/net/virtio/virtio_rxtx.c

Re: [dpdk-dev] [PATCH v2 3/3] net/virtio: improve batching in mergeable path

2018-12-19 Thread Tiwei Bie
On Tue, Dec 11, 2018 at 02:48:04PM +0100, Maxime Coquelin wrote: > This patch improves both descriptors dequeue and refill, > by using the same bathing strategy as done in in-order path. > > Signed-off-by: Maxime Coquelin > --- > drivers/net/virtio/virtio_rxtx.c | 237 ---

Re: [dpdk-dev] [PATCH v2 3/3] net/virtio: improve batching in mergeable path

2018-12-19 Thread Jens Freimann
On Tue, Dec 11, 2018 at 02:48:04PM +0100, Maxime Coquelin wrote: This patch improves both descriptors dequeue and refill, by using the same bathing strategy as done in in-order path. s/bathing/batching/ Signed-off-by: Maxime Coquelin --- drivers/net/virtio/virtio_rxtx.c | 237 ++

[dpdk-dev] [PATCH v2 3/3] net/virtio: improve batching in mergeable path

2018-12-11 Thread Maxime Coquelin
This patch improves both descriptors dequeue and refill, by using the same bathing strategy as done in in-order path. Signed-off-by: Maxime Coquelin --- drivers/net/virtio/virtio_rxtx.c | 237 --- 1 file changed, 126 insertions(+), 111 deletions(-) diff --git a/drive