Re: [dpdk-dev] dev Digest, Vol 159, Issue 119

2017-09-01 Thread Pierre
, Pierre On 01/09/17 09:58, dev-requ...@dpdk.org wrote: Send dev mailing list submissions to dev@dpdk.org To subscribe or unsubscribe via the World Wide Web, visit http://dpdk.org/ml/listinfo/dev or, via email, send a message with subject or body 'help' to

[dpdk-dev] [PATCH v2] virtio: tx with can_push when VERSION_1 is set

2016-11-30 Thread Pierre Pfister (ppfister)
improves small packets forwarding rate towards devices advertising VERSION_1 feature. Signed-off-by: Pierre Pfister --- drivers/net/virtio/virtio_rxtx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/virtio/virtio_rxtx.c b/drivers/net/virtio/virtio_rxtx.c index 2

[dpdk-dev] [PATCH] virtio: tx with can_push when VERSION_1 is set

2016-11-30 Thread Pierre Pfister (ppfister)
> Le 22 nov. 2016 ? 14:17, Maxime Coquelin a > ?crit : > > Hi Pierre, > > On 11/22/2016 10:54 AM, Pierre Pfister (ppfister) wrote: >> Hello Maxime, >> >>> Le 9 nov. 2016 ? 15:51, Maxime Coquelin a >>> ?crit : >>> >>> Hi

[dpdk-dev] [PATCH] virtio: tx with can_push when VERSION_1 is set

2016-11-22 Thread Pierre Pfister (ppfister)
Hello Maxime, > Le 9 nov. 2016 ? 15:51, Maxime Coquelin a > ?crit : > > Hi Pierre, > > On 11/09/2016 01:42 PM, Pierre Pfister (ppfister) wrote: >> Hello Maxime, >> >> Sorry for the late reply. >> >> >>> Le 8 nov. 2016 ? 10:44, Maxime

[dpdk-dev] [PATCH] virtio: tx with can_push when VERSION_1 is set

2016-11-09 Thread Pierre Pfister (ppfister)
Hello Maxime, Sorry for the late reply. > Le 8 nov. 2016 ? 10:44, Maxime Coquelin a > ?crit : > > Hi Pierre, > > On 11/08/2016 10:31 AM, Pierre Pfister (ppfister) wrote: >> Current virtio driver advertises VERSION_1 support, >> but does not handle device'

[dpdk-dev] [PATCH] virtio: tx with can_push when VERSION_1 is set

2016-11-08 Thread Pierre Pfister (ppfister)
improves small packets forwarding rate towards devices advertising VERSION_1 feature. Signed-off-by: Pierre Pfister --- drivers/net/virtio/virtio_rxtx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/virtio/virtio_rxtx.c b/drivers/net/virtio/virtio_rxtx.c index 7

[dpdk-dev] [PATCH v4] vhost: Add indirect descriptors support to the TX path

2016-10-28 Thread Pierre Pfister (ppfister)
> Le 27 oct. 2016 ? 12:19, Wang, Zhihong a ?crit : > > > >> -Original Message- >> From: Maxime Coquelin [mailto:maxime.coquelin at redhat.com] >> Sent: Thursday, October 27, 2016 5:55 PM >> To: Wang, Zhihong ; Yuanhan Liu >> ; stephen at netwo

[dpdk-dev] [PATCH v3] virtio: enable indirect descriptors feature

2016-09-06 Thread Pierre Pfister (ppfister)
>From be1210e77f0f9072ccb8e6970552596b6780a44c Mon Sep 17 00:00:00 2001 From: Pierre Pfister Date: Fri, 2 Sep 2016 16:24:57 +0200 Subject: [PATCH] virtio: enable indirect descriptors feature Virtio indirect descriptors are supported by the data-path but the feature bit is never set dur

[dpdk-dev] [PATCH v2] virtio: enable indirect descriptors feature

2016-09-06 Thread Pierre Pfister (ppfister)
> Le 5 sept. 2016 ? 23:08, Stephen Hemminger a > ?crit : > > On Mon, 5 Sep 2016 16:24:13 +0200 > Maxime Coquelin wrote: > >> Thanks Pierre for sending the fix. >> >> Minor comments below: >> >> On 09/05/2016 08:52 AM, Pierre Pfister (ppfis

[dpdk-dev] [PATCH v2] virtio: enable indirect descriptors feature

2016-09-05 Thread Pierre Pfister (ppfister)
the device. Signed-off-by: Pierre Pfister --- drivers/net/virtio/virtio_ethdev.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/virtio/virtio_ethdev.h b/drivers/net/virtio/virtio_ethdev.h index 2ecec6e..31c91a5 100644 --- a/drivers/net/virtio/virtio_ethdev.h +++ b/drivers/net

[dpdk-dev] [PATCH] virtio: enable indirect descriptors feature

2016-09-05 Thread Pierre Pfister (ppfister)
> Le 5 sept. 2016 ? 04:20, Yuanhan Liu a ?crit > : > > On Fri, Sep 02, 2016 at 03:55:24PM +, Pierre Pfister (ppfister) wrote: >> Indirect descriptors support was disabled by commit 59d593f472a7, > > Hi, > > I failed to find this commit: > >

[dpdk-dev] [PATCH] virtio: enable indirect descriptors feature

2016-09-02 Thread Pierre Pfister (ppfister)
the device. Signed-off-by: Pierre Pfister --- drivers/net/virtio/virtio_ethdev.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/virtio/virtio_ethdev.h b/drivers/net/virtio/virtio_ethdev.h index 2ecec6e..31c91a5 100644 --- a/drivers/net/virtio/virtio_ethdev.h +++ b/drivers/net

[dpdk-dev] Enable virtio VIRTIO_RING_F_INDIRECT_DESC feature ?

2016-09-02 Thread Pierre Pfister (ppfister)
feature as it enables using more descriptors than limited by the queue size. Thanks, - Pierre