[dpdk-dev] non-x86 ? Re: Would DPDK run on AMD processors

2014-07-08 Thread Irfan Zia
hi Derek, we completed a DPDK port onto the Tilera's TILE-GX architecture 'Natively' for a customer. Specifically it was on the Gx-36 (36 Tiles) PCIe card. Their team is able to directly take their Host DPDK apps (NFV modules and tunnels generators) and reuse them on the TileNcore-36 PCIe

[dpdk-dev] [PATCH 0/6] Clang compilation support on FreeBSD and Linux

2014-07-08 Thread Bruce Richardson
This patch set enables clang compilation on FreeBSD and Linux. It includes patches to fix a number of compilation errors thrown up by clang, and then adds in the appropriate toolchain makefiles and compile-time configurations. This set has been tested with clang v3.3 on FreeBSD 10 and clang v3.4 o

[dpdk-dev] [PATCH 3/6] mk: Ensure correct detection of SSE4.2 on FreeBSD

2014-07-08 Thread Bruce Richardson
Add a special case to the native target makefile, where we check if -march=native shows SSE4.2 support. If it does not, then not everything may build, so we check if the hardware supports SSE4.2, and use a corei7 target explicitly to get the SSE4.2 support. Signed-off-by: Bruce Richardson --- mk

[dpdk-dev] [PATCH 4/6] acl: add nmmintrin.h header to allow clang compilation

2014-07-08 Thread Bruce Richardson
Clang compile fails without nmmintrin.h being explicitly included. Signed-off-by: Bruce Richardson --- lib/librte_acl/acl_bld.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_acl/acl_bld.c b/lib/librte_acl/acl_bld.c index fe7b824..873447b 100644 --- a/lib/librte_acl/acl_bld.c +++

[dpdk-dev] [PATCH 2/6] Makefiles: add clang to compiler if/else block

2014-07-08 Thread Bruce Richardson
The makefiles for a number of drivers conditionally disable certain warnings depending on the compiler and version used. Add in clang to the list of compiler options. Signed-off-by: Bruce Richardson --- lib/librte_pmd_i40e/Makefile| 9 + lib/librte_pmd_ixgbe/Makefile | 7 +++ l

[dpdk-dev] [PATCH 5/6] mk: add toolchain for clang and linuxapp target

2014-07-08 Thread Bruce Richardson
Add support for clang by adding a toolchain folder for it with the appropriate files. Add compilation support for clang on linux by adding a new target. Signed-off-by: Bruce Richardson --- config/defconfig_x86_64-native-linuxapp-clang | 63 ++ mk/toolchain/clang/rte.toolchain

[dpdk-dev] [PATCH 1/6] pmd_bond: add missing variable initialization

2014-07-08 Thread Bruce Richardson
Variable "valid_slave" wasn't getting properly zero-initialized. This error is flagged by clang on compile. Signed-off-by: Bruce Richardson --- lib/librte_pmd_bond/rte_eth_bond_pmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_pmd_bond/rte_eth_bond_pmd.c b/lib

[dpdk-dev] [PATCH 6/6] config: add compile target for clang on BSD

2014-07-08 Thread Bruce Richardson
Add option to compile on FreeBSD using the clang compiler, now the default compiler on FreeBSD 10. Signed-off-by: Bruce Richardson --- config/defconfig_x86_64-native-bsdapp-clang | 71 + 1 file changed, 71 insertions(+) create mode 100644 config/defconfig_x86_64-nati

[dpdk-dev] Performance issue with vmxnet3 pmd

2014-07-08 Thread Patel, Rashmin N
According to my experiments at moment, the bottleneck lies in backend in hypervisor for para-virtual devices including Vmxnet3 and hence different front-end drivers (stock Vmxnet3 driver or Vmxnet3-PMD) would performance equally well, I don?t have solid numbers to show at moment though. Will upd

[dpdk-dev] Tilera Native DPDK. Re: non-x86 ? Re: Would DPDK run on AMD processors

2014-07-08 Thread Irfan Zia
Derek, If the customer allows it ; more details could become available. Meanwhile it will be their prerogative to contribute. This is briefly explained at: http://paxym.com/Paxym_Updates_Multicore_SW.html#DPDK-Native-Tilera-Port thanks! -irfan On Mon, Jul 8, 2014 at 4:46 PM, Derek Wasely wro

[dpdk-dev] Build failure on Ubuntu 14.04

2014-07-08 Thread Cao, Waterman
Thanks Keith. we will try to enable CentOS in our daily build test. But I has a little concern about Ubuntu 14. We enabled latest UB14 with kernel 3.13.0-24 at this may. It seems that UB LTS will upgrade Linux kernel to 3.13.0-30. But we don't know when it upgrade, and it will cost a lot of effort

[dpdk-dev] Making space in mbuf data-structure

2014-07-08 Thread Zhang, Helin
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier MATZ > Sent: Monday, July 7, 2014 6:19 PM > To: Richardson, Bruce; dev at dpdk.org > Subject: Re: [dpdk-dev] Making space in mbuf data-structure > > Hello Bruce, > > Thank you to revive this discussio

[dpdk-dev] Performance issue with vmxnet3 pmd

2014-07-08 Thread Thomas Monjalon
Hi, 2014-07-07 18:22, Hyunseok: > I was testing l2-fwd with vmxnet3 pmd (included in dpdk). Have you tested vmxnet3-usermap (http://dpdk.org/doc/vmxnet3-usermap)? > The maximum forwarding rate I got from vmxnet3 pmd with l2fwd is only 2.5 > to 2.8 Gbps. It could be interesting to know your exac

[dpdk-dev] Making space in mbuf data-structure

2014-07-08 Thread Ivan Boule
On 07/08/2014 09:04 AM, Zhang, Helin wrote: > > >> -Original Message- >> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier MATZ >> Sent: Monday, July 7, 2014 6:19 PM >> To: Richardson, Bruce; dev at dpdk.org >> Subject: Re: [dpdk-dev] Making space in mbuf data-structure >> >>

[dpdk-dev] Making space in mbuf data-structure

2014-07-08 Thread Zhang, Helin
> -Original Message- > From: Ivan Boule [mailto:ivan.boule at 6wind.com] > Sent: Tuesday, July 8, 2014 3:17 PM > To: Zhang, Helin; Olivier MATZ; Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] Making space in mbuf data-structure > > On 07/08/2014 09:04 AM, Zhang, Helin

[dpdk-dev] [PATCH] eal/linuxapp: Add parameter to specify master lcore id

2014-07-08 Thread Simon Kuenzer
This commit enables users to specify the lcore id that is used as master lcore. Signed-off-by: Simon Kuenzer --- lib/librte_eal/linuxapp/eal/eal.c | 33 + 1 file changed, 33 insertions(+) diff --git a/lib/librte_eal/linuxapp/eal/eal.c b/lib/librte_eal/linuxapp

[dpdk-dev] [PATCH] eal/linuxapp: Add parameter to specify master lcore id

2014-07-08 Thread Simon Kuenzer
Here are some comments about the use case of this patch: This patch is especially useful in cases where DPDK applications scale their CPU resources at runtime via starting and stopping slave lcores. Since the coremask defines the maximum scale-out for such a application, the master lcore become

[dpdk-dev] [PATCH] Added Spinlock to l3fwd-vf example to prevent race conditioning

2014-07-08 Thread Daniel Mrzyglod
Signed-off-by: Daniel Mrzyglod --- examples/l3fwd-vf/main.c |6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/l3fwd-vf/main.c b/examples/l3fwd-vf/main.c index 2ca5c21..57852d0 100644 --- a/examples/l3fwd-vf/main.c +++ b/examples/l3fwd-vf/main.c @@ -54,6 +54,7 @

[dpdk-dev] Build failure on Ubuntu 14.04

2014-07-08 Thread Wiles, Roger Keith
Here is the release information I have, if you want more let me know. $sudo apt-get update $sudo apt-get upgrade $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description:Ubuntu 14.04 LTS Release:14.04 Codename: trusty $ uname -a Linux keithw-W2600CR 3.1

[dpdk-dev] Performance issue with vmxnet3 pmd

2014-07-08 Thread Hyunseok
Thomas, The last time I tried vmxnet3-usermap a couple of weeks ago, it did not compile against the latest kernel (3.11). Is it still the case? Or do you have the latest version which is compatible with newer kernels? Also, do you have any benchmark numbers with vmxnet3-usermap in any chance?

[dpdk-dev] Setup script for xen ?

2014-07-08 Thread Gary M
Hi, New to the dpdk and just downloaded 1.7. I attempting to execute the test application (17) in Dom0 through the setup script. It hangs during or just after setting up memory. I know I'm doing something wrong, I just can't quickly figure out it is.. need some help !! I have UIO and KNI module

[dpdk-dev] 32 bit virtio_pmd pkt i/o issue

2014-07-08 Thread Vijayakumar Muthuvel Manickam
Hi, I am using 32bit VIRTIO PMD from dpdk-1.6.0r1 and seeing a basic packet I/O issue under some VM configurations when testing with l2fwd application. The issue is that Tx on virtio NIC is not working. Packets enqueued by virtio pmd on Tx queue are not dequeued by the backend vhost-net for some