[dpdk-dev] [dpdk-announce] virtio-net-pmd 1.0

2013-07-10 Thread Thomas Monjalon
All, 6WIND is releasing the source code of librte_pmd_virtio under a BSD license. It is available at: http://dpdk.org/browse/virtio-net-pmd/snapshot/virtio-net-pmd-1.0.tar.gz git://dpdk.org/virtio-net-pmd It allows running any DPDK application into a Linux guest using the virtio-

[dpdk-dev] [dpdk-announce] DPDK 1.2.3r4 released

2013-07-10 Thread Thomas Monjalon
The new release can be downloaded here: http://dpdk.org/browse/dpdk/tag/?id=v1.2.3r4 Changelog - fix for: * pause frames configuration in testpmd - enhancements: * allow PMD without kernel module * allow PMD extensions to over

[dpdk-dev] [PATCH 2/2] eal: load libraries before creating threads

2013-07-10 Thread Thomas Monjalon
10/07/2013 15:14, Damien Millescamps : > We want the threads to inherit any property that could be set while > loading a plugin, such as iopl(). > > Signed-off-by: Damien Millescamps > --- acked and applied -- Thomas

[dpdk-dev] [PATCH 1/2] eal: add flag to force unbind device

2013-07-10 Thread Thomas Monjalon
10/07/2013 15:14, Damien Millescamps : > Some devices need to be unbound in order to be used via the PMD > without kernel module. > > Signed-off-by: Damien Millescamps > --- acked and applied -- Thomas

[dpdk-dev] [PATCH] app: fix configuration of pause frames in testpmd

2013-07-10 Thread Thomas Monjalon
10/07/2013 09:27, Ivan Boule : > From: Zijie Pan > > The entries for the configuration of the reception and of the transmission > of pause frames are inverted in the mode conversion array. > > Signed-off-by: Zijie Pan > Acked-by: Ivan Boule > --- applied -- Thomas

[dpdk-dev] [PATCH 2/2] eal: load libraries before creating threads

2013-07-10 Thread Damien Millescamps
We want the threads to inherit any property that could be set while loading a plugin, such as iopl(). Signed-off-by: Damien Millescamps --- lib/librte_eal/linuxapp/eal/eal.c | 24 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/librte_eal/linuxapp/

[dpdk-dev] [PATCH 1/2] eal: add flag to force unbind device

2013-07-10 Thread Damien Millescamps
Some devices need to be unbound in order to be used via the PMD without kernel module. Signed-off-by: Damien Millescamps --- lib/librte_eal/common/include/rte_pci.h |2 ++ lib/librte_eal/linuxapp/eal/eal_pci.c |5 + 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/lib

[dpdk-dev] [PATCH 0/2] *** SUBJECT HERE ***

2013-07-10 Thread Damien Millescamps
*** BLURB HERE *** Damien Millescamps (2): eal: add flag to force unbind device eal: load libraries before creating threads lib/librte_eal/common/include/rte_pci.h |2 ++ lib/librte_eal/linuxapp/eal/eal.c | 24 lib/librte_eal/linuxapp/eal/eal_pci.c |

[dpdk-dev] TX write threshold vs Report Status threshold

2013-07-10 Thread Patrick Mahan
I'm not sure this is a bug or feature. First, I've been away for a few weeks being on vacation and other stuff. My client liked my findings on DPDK well enough that I have been loaned a dual-cpu system (2 Xeon E5-2690 @ 2.9 GHz) and two 82599 cards. This is so I can eliminate the PCIe bus con

[dpdk-dev] [PATCH] app: fix configuration of pause frames in testpmd

2013-07-10 Thread Ivan Boule
From: Zijie Pan The entries for the configuration of the reception and of the transmission of pause frames are inverted in the mode conversion array. Signed-off-by: Zijie Pan Acked-by: Ivan Boule --- app/test-pmd/cmdline.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --gi