[dpdk-dev] L2FWD Sample Application stops receiving packets after sometime

2014-03-21 Thread Prashant Upadhyaya
Hi Neeraj, I am glad your usecase works. Please do let me know what is the maximum throughput you are able to achieve with vmxnet3 (assuming your underlying physical NIC is 10 Gig), it will be interesting to see the performance. Regards -Prashant -Original Message- From: dev [mailto

[dpdk-dev] Which vmxnet3 pmd is to be used in dpdk 1.6.x?

2014-03-21 Thread Prashant Upadhyaya
Hi Stephen, I believe the 1.6.0r2 is baking. It would be great if you could enhance the vmxnet3 driver on the above with multi-segment support. Any serious usecase ends up using multi-segment, so would be great if r2 can capture it. Regards -Prashant -Original Message- From: dev [mail

[dpdk-dev] [PATCH] igb_uio: don't bind vmxnet3 and virtio devices if disabled

2014-03-21 Thread Thomas Monjalon
05/03/2014 16:16, David Marchand : > When not using vmxnet3-uio and virtio-uio PMDs, prevent igb_uio from binding > these devices. This way, vmxnet3 and virtio PMDs won't fail to initialize > because of a device silently bound to igb_uio. > > Signed-off-by: David Marchand Acked and applied for v

[dpdk-dev] [PATCH] vmxnet3: rename library

2014-03-21 Thread Thomas Monjalon
In order to distinguish clearly this implementation from the extension vmxnet3-usermap, it is renamed to reflect its usage of uio framework. Signed-off-by: Thomas Monjalon --- lib/librte_pmd_vmxnet3/Makefile | 2 +- mk/rte.app.mk | 2 +- 2 files changed, 2 insertions(+), 2 dele

[dpdk-dev] [PATCH] vmxnet3: rename library

2014-03-21 Thread Thomas Graf
On 03/21/2014 01:59 PM, Thomas Monjalon wrote: > In order to distinguish clearly this implementation from the extension > vmxnet3-usermap, it is renamed to reflect its usage of uio framework. > > Signed-off-by: Thomas Monjalon LGTM Acked-by: Thomas Graf

[dpdk-dev] [PATCH] pci: fix igb_uio mapping for virtio_uio and vmxnet3_uio

2014-03-21 Thread Thomas Monjalon
Since commit 10ed994 (pci: use igb_uio mapping only when needed), the flag RTE_PCI_DRV_NEED_IGB_UIO must be set even if RTE_EAL_UNBIND_PORTS is disabled. It was not the case for virtio_uio and vmxnet3_uio so the uio resources were not mapped. Reported-by: Daniel Kan Signed-off-by: Thomas Monjalon

[dpdk-dev] On vmxnet-pmd crash in DPDK 1.6.0r1

2014-03-21 Thread Thomas Monjalon
10/03/2014 23:29, Daniel Kan : > virtio-pmd has the same pattern. I wonder if vmxnet3-pmd just blindly copied > the same paradigm. > > 473 static struct eth_driver rte_virtio_pmd = { > 474 { > 475 .name = "rte_virtio_pmd", > 476 .id_table = pci_id_virtio_map, > 477 #ifdef RTE_E

[dpdk-dev] [PATCH] vmxnet3: rename library

2014-03-21 Thread Thomas Monjalon
21/03/2014 14:41, Thomas Graf : > On 03/21/2014 01:59 PM, Thomas Monjalon wrote: > > In order to distinguish clearly this implementation from the extension > > vmxnet3-usermap, it is renamed to reflect its usage of uio framework. > > > > Signed-off-by: Thomas Monjalon > > LGTM > > Acked-by: Tho

[dpdk-dev] [PATCH] pci: fix igb_uio mapping for virtio_uio and vmxnet3_uio

2014-03-21 Thread Thomas Monjalon
21/03/2014 14:50, Thomas Monjalon : > Since commit 10ed994 (pci: use igb_uio mapping only when needed), > the flag RTE_PCI_DRV_NEED_IGB_UIO must be set even if RTE_EAL_UNBIND_PORTS > is disabled. > It was not the case for virtio_uio and vmxnet3_uio so the uio resources were > not mapped. > > Repor

[dpdk-dev] [PATCH] vmxnet3: fixed segfault when initializing vmxnet3 pmd on linux platform

2014-03-21 Thread Thomas Monjalon
12/03/2014 13:19, Daniel Kan : > The vmxnet3 PCI hardware resources were never memory mapped when > RE_EAL_UNBIND_PORTS is not defined. Specifically, pci_dev->mem_resource is > not mapped. The fix is to always set drv_flags with RTE_PCI_DRV_NEED_IGU > for vmxnet3. This ensures pci_uio_map_resource(

[dpdk-dev] [PATCH v2] eal_common_cpuflags: Fix %rbx corruption, and simplify the code

2014-03-21 Thread Neil Horman
From: "H. Peter Anvin" Neil Horman reported that on x86-64 the upper half of %rbx would get clobbered when the code was compiled PIC or PIE, because the i386-specific code to preserve %ebx was incorrectly compiled. However, the code is really way more complex than it needs to be. For one thing,

[dpdk-dev] [memnic PATCH v2] linux: fix build with kernel 3.3

2014-03-21 Thread Thomas Monjalon
18/03/2014 23:04, Hiroshi Shimamoto : > > Remove unused dev_ops functions. > > > > The API of some functions (memnic_vlan_rx_add_vid, > > memnic_vlan_rx_kill_vid) changed starting from 3.3 kernel. Instead of > > using a #ifdef to handle the compilation on any kernel, we can just > > remove these f

[dpdk-dev] [memnic PATCH] pmd: enable compiler optimization

2014-03-21 Thread Thomas Monjalon
19/03/2014 10:19, Hiroshi Shimamoto : > Hi, > > this makes sense. > > > Subject: [dpdk-dev] [memnic PATCH] pmd: enable compiler optimization > > > > Add -O3 in flags, it was missing in initial Makefile. > > > > Signed-off-by: Olivier Matz > > Acked-by: Hiroshi Shimamoto Applied. Thank you

[dpdk-dev] [PATCH v2] eal_common_cpuflags: Fix %rbx corruption, and simplify the code

2014-03-21 Thread H. Peter Anvin
On 03/21/2014 07:49 AM, Neil Horman wrote: > From: "H. Peter Anvin" > > Neil Horman reported that on x86-64 the upper half of %rbx would get > clobbered when the code was compiled PIC or PIE, because the > i386-specific code to preserve %ebx was incorrectly compiled. > > However, the code is rea

[dpdk-dev] [PATCH v2] eal_common_cpuflags: Fix %rbx corruption, and simplify the code

2014-03-21 Thread Neil Horman
On Fri, Mar 21, 2014 at 08:03:34AM -0700, H. Peter Anvin wrote: > On 03/21/2014 07:49 AM, Neil Horman wrote: > > From: "H. Peter Anvin" > > > > Neil Horman reported that on x86-64 the upper half of %rbx would get > > clobbered when the code was compiled PIC or PIE, because the > > i386-specific c

[dpdk-dev] [memnic PATCH 2/5] pmd: check frame length from host

2014-03-21 Thread Thomas Monjalon
11/03/2014 05:38, Hiroshi Shimamoto: > Drop packets which have invalid length. > > Normally this must not happen while vSwitch works fine, however > it's better to put a sentinel to prevent memory corruption. > > Signed-off-by: Hiroshi Shimamoto > Reviewed-by: Hayato Momma Acked and applied wi