[dpdk-dev] test setup for l3fwd application running on VM

2014-04-21 Thread B Gopikrishna
Hi I have the below setup and would like to check the l3fwd application running on VM VM1 VM2(DPDK-L3fwd) VM3 vnic1 --bridge1 vnic1 vnic2--bridge2vnic1 On VM1 -TCP client and, on VM3 -TCP serv

[dpdk-dev] [PATCH 01/15 v2] makefiles: Fixed -share command line option error

2014-04-21 Thread Neil Horman
On Fri, Apr 18, 2014 at 03:29:01PM +0200, Thomas Monjalon wrote: > 2014-04-18 09:18, Neil Horman: > > On Fri, Apr 18, 2014 at 01:23:19PM +0200, Thomas Monjalon wrote: > > > I think that CPU_LDFLAGS should be prefixed with -Wl, in case of CC > > > linking. So blindly assigning CC to LD variable seem

[dpdk-dev] [PATCH v5 00/14] dpdk: Separate compile time linkage between eal lib and pmd's

2014-04-21 Thread Neil Horman
Disconnect compile time linkage between eal library / applications and pmd's I noticed that, while tinkering with dpdk, building for shared libraries still resulted in all the test applications linking to all the built pmd's, despite not actually needing them all. We are able to tell an applicati

[dpdk-dev] [PATCH 0/X v5 01/14] makefiles: Fixed -share command line option error

2014-04-21 Thread Neil Horman
The shared libraries built with the current makefile set produce static libraries rather than actual shared objects. This is due to several missing options that are required to correctly build shared objects using ld, as well as a mis-specified -share option (which should be -shared). Switching to

[dpdk-dev] [PATCH 0/X v5 02/14] pmd: Add PMD_REGISTER_DRIVER macro

2014-04-21 Thread Neil Horman
Rather than have each driver have to remember to add a constructor to it to make sure its gets registered properly, wrap that process up in a macro to make registration a one line affair. This also sets the stage for us to make registration of vdev pmds and physical pmds a uniform process Signed-

[dpdk-dev] [PATCH 0/X v5 03/14] pcap: Convert to use of PMD_REGISTER_DRIVER and fix linking

2014-04-21 Thread Neil Horman
convert the pcap driver to use the PMD_REGISTER_DRIVER macro and fix up the Makefile so that its linkage is only done if we are building static libraries. This means that the test applications now have no reference to the pcap library when building DSO's and must specify its use on the command line

[dpdk-dev] [PATCH 0/X v5 04/14] ring: Convert to use of PMD_REGISTER_DRIVER and fix linking

2014-04-21 Thread Neil Horman
convert the ring driver to use the PMD_REGISTER_DRIVER macro and fix up the Makefile so that its linkage is only done if we are building static libraries. This means that the test applications now have no reference to the ring library when building DSO's and must specify its use on the command line

[dpdk-dev] [PATCH 0/X v5 05/14] xenvirt: Convert to use of PMD_REGISTER_DRIVER and fix linking

2014-04-21 Thread Neil Horman
convert the xenvirt driver to use the PMD_REGISTER_DRIVER macro. This means that the test applications now have no reference to the xenvirt library when building DSO's and must specify its use on the command line with the -d option. Static linking will still initalize the driver automatically. A

[dpdk-dev] [PATCH 0/X v5 06/14] eal: Make vdev init path generic for both virtual and physcial devices

2014-04-21 Thread Neil Horman
Currently, physical device pmds use a separate initalization path (rte_pmd_init_all) while virtual devices use a constructor registration and rte_eal_dev_init. Theres no reason to have them be separate. This patch removes the vdev specific nomenclature from the vdev init path and makes it more ge

[dpdk-dev] [PATCH 0/X v5 07/14] igb: Convert to use of PMD_REGISTER_DRIVER and fix linking

2014-04-21 Thread Neil Horman
convert the igb pmd driver to use the PMD_REGISTER_DRIVER macro. This means that the test applications now have no reference to the igb library when building DSO's and must specify its use on the command line with the -d option. Static linking will still initalize the driver automatically. Signed

[dpdk-dev] [PATCH 0/X v5 08/14] igbvf: Convert to use of PMD_REGISTER_DRIVER and fix linking

2014-04-21 Thread Neil Horman
convert the igbvf pmd driver to use the PMD_REGISTER_DRIVER macro. This means that the test applications now have no reference to the igbvf library when building DSO's and must specify its use on the command line with the -d option. Static linking will still initalize the driver automatically. Si

[dpdk-dev] [PATCH 0/X v5 09/14] e1000: Convert to use of PMD_REGISTER_DRIVER and fix linking

2014-04-21 Thread Neil Horman
convert the e1000 pmd driver to use the PMD_REGISTER_DRIVER macro. This means that the test applications now have no reference to the e1000 library when building DSO's and must specify its use on the command line with the -d option. Static linking will still initalize the driver automatically. Si

[dpdk-dev] [PATCH 0/X v5 10/14] ixgbe: Convert to use of PMD_REGISTER_DRIVER and fix linking

2014-04-21 Thread Neil Horman
convert the ixgbe pmd driver to use the PMD_REGISTER_DRIVER macro. This means that the test applications now have no reference to the ixgbe library when building DSO's and must specify its use on the command line with the -d option. Static linking will still initalize the driver automatically. Si

[dpdk-dev] [PATCH 0/X v5 11/14] ixgbevf: Convert to use of PMD_REGISTER_DRIVER and fix linking

2014-04-21 Thread Neil Horman
convert the ixgbevf pmd driver to use the PMD_REGISTER_DRIVER macro. This means that the test applications now have no reference to the ixgbevf library when building DSO's and must specify its use on the command line with the -d option. Static linking will still initalize the driver automatically

[dpdk-dev] [PATCH 0/X v5 12/14] virtio: Convert to use of PMD_REGISTER_DRIVER and fix linking

2014-04-21 Thread Neil Horman
convert the virtio pmd driver to use the PMD_REGISTER_DRIVER macro. This means that the test applications now have no reference to the virtio library when building DSO's and must specify its use on the command line with the -d option. Static linking will still initalize the driver automatically.

[dpdk-dev] [PATCH 0/X v5 13/14] vmxnet3: Convert to use of PMD_REGISTER_DRIVER and fix linking

2014-04-21 Thread Neil Horman
convert the vmxnet3 pmd driver to use the PMD_REGISTER_DRIVER macro. This means that the test applications now have no reference to the vmxnet3 library when building DSO's and must specify its use on the command line with the -d option. Static linking will still initalize the driver automatically

[dpdk-dev] [PATCH 0/X v5 14/14] pmd: Remove rte_pmd_init_all

2014-04-21 Thread Neil Horman
Now that we've converted all the pmds in dpdk to use the driver registration macro, rte_pmd_init_all has become empty. As theres no reason to keep it around anymore, just remove it and fix up all the eample callers. Signed-off-by: Neil Horman --- app/test-pmd/testpmd.c

[dpdk-dev] [PATCH v5 00/14] dpdk: Separate compile time linkage between eal lib and pmd's

2014-04-21 Thread Neil Horman
On Mon, Apr 21, 2014 at 10:59:25AM -0400, Neil Horman wrote: > Disconnect compile time linkage between eal library / applications and pmd's > > I noticed that, while tinkering with dpdk, building for shared libraries still > resulted in all the test applications linking to all the built pmd's, des

[dpdk-dev] [PATCH] malloc: fix rte_free run time in O(n) free blocks

2014-04-21 Thread Sanford, Robert
Here is our proposed patch: Lib rte_malloc stores free blocks in singly-linked lists. This results in O(n), i.e., poor performance when freeing memory to a heap that contains thousands of free blocks. A simple solution is to store free blocks on doubly-linked lists. - Space-wise, we add one new p

[dpdk-dev] [PATCH v5 00/14] dpdk: Separate compile time linkage between eal lib and pmd's

2014-04-21 Thread Stephen Hemminger
On Mon, 21 Apr 2014 10:59:25 -0400 Neil Horman wrote: > Disconnect compile time linkage between eal library / applications and pmd's > > I noticed that, while tinkering with dpdk, building for shared libraries still > resulted in all the test applications linking to all the built pmd's, despite

[dpdk-dev] [PATCH v5 00/14] dpdk: Separate compile time linkage between eal lib and pmd's

2014-04-21 Thread Neil Horman
On Mon, Apr 21, 2014 at 01:10:00PM -0700, Stephen Hemminger wrote: > On Mon, 21 Apr 2014 10:59:25 -0400 > Neil Horman wrote: > > > Disconnect compile time linkage between eal library / applications and pmd's > > > > I noticed that, while tinkering with dpdk, building for shared libraries > > st