[dpdk-dev] [PATCH] Clang compile error with RTE_LIBRTE_MEMPOOL_DEBUG enabled.

2014-09-27 Thread Keith Wiles
When enabling RTE_LIBRTE_MEMPOOL_DEBUG and compiling with clang compiler an error occurs, because ifdefed code now includes GCC pragmas. Signed-off-by: Keith Wiles --- lib/librte_mempool/rte_mempool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_mempool/rte_

[dpdk-dev] [PATCH] Clang compile error with RTE_LIBRTE_MEMPOOL_DEBUG enabled.

2014-09-27 Thread Keith Wiles
When enabling RTE_LIBRTE_MEMPOOL_DEBUG and compiling with clang compiler an error occurs, because ifdefed code now includes GCC pragmas. Signed-off-by: Keith Wiles --- lib/librte_mempool/rte_mempool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_mempool/rte_

[dpdk-dev] [PATCH] Clang compile error with RTE_LIBRTE_MEMPOOL_DEBUG enabled.

2014-09-27 Thread Wiles, Roger Keith
When enabling RTE_LIBRTE_MEMPOOL_DEBUG and compiling with clang compiler an error occurs, because ifdefed code now includes GCC pragmas. Signed-off-by: Keith Wiles --- lib/librte_mempool/rte_mempool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_mempool/rte_

[dpdk-dev] [PATCH] Clang compile error with RTE_LIBRTE_MEMPOOL_DEBUG enabled.

2014-09-27 Thread Neil Horman
On Sat, Sep 27, 2014 at 12:30:35AM -0500, Keith Wiles wrote: > When enabling RTE_LIBRTE_MEMPOOL_DEBUG and compiling with clang > compiler an error occurs, because ifdefed code now includes GCC pragmas. > > Signed-off-by: Keith Wiles > --- > lib/librte_mempool/rte_mempool.h | 4 ++-- > 1 file cha

[dpdk-dev] [PATCH] rte_mempool_dump() crashes with NULL rte_mempool pointer.

2014-09-27 Thread Wiles, Roger Keith
Check the FILE *f and rte_mempool *mp pointers for NULL and return plus print out a message if RTE_LIBRTE_MEMPOOL_DEBUG is enabled. Signed-off-by: Keith Wiles --- lib/librte_mempool/rte_mempool.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/lib/librte_mempool/rte_mempool.c b/lib/li

[dpdk-dev] [PATCH] Function __mempool_get_bulk() returns wrong count.

2014-09-27 Thread Wiles, Roger Keith
When __mempool_get_bulk() grabs entries from the cache it returns zero instead of the number of entries obtained. Plus the stats were increased by the wrong count of objects. Signed-off-by: Keith Wiles --- lib/librte_mempool/rte_mempool.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions

[dpdk-dev] [PATCH 0/2] Added functions to get RX/TX default configuration

2014-09-27 Thread David Marchand
Hello Pablo, - All I can see in this patchset is stuff that should remain in the PMD (since this is really specific to them). - Anyway, if you want to let application get this information, why the new API ? >From my point of view, this should go in rte_eth_dev_info_get(). -- David Marchand O

[dpdk-dev] dpdk ixgbevf pmd driver statistics collection

2014-09-27 Thread Sengottuvelan S
Hi I am able to get good results when I use DPDK/SR-IOV, 1 VF per PF to 1 VM with ixgbevf driver pmd driver. But, when I add more VM with DPDK/SR-IOV enabled NIC 1vf 1pf, both VMs reduced the packets reception by 40%. I am not sure where the problem is since with 1 VM packet receive/send is work

[dpdk-dev] [PATCH] rte_mempool_dump() crashes with NULL rte_mempool pointer.

2014-09-27 Thread Neil Horman
On Sat, Sep 27, 2014 at 06:35:01PM +, Wiles, Roger Keith wrote: > > Check the FILE *f and rte_mempool *mp pointers for NULL and > return plus print out a message if RTE_LIBRTE_MEMPOOL_DEBUG is enabled. > > Signed-off-by: Keith Wiles > --- > lib/librte_mempool/rte_mempool.c | 6 ++ > 1 f

[dpdk-dev] dpdk ixgbevf pmd driver statistics collection

2014-09-27 Thread Sengottuvelan S
Hi I am able to get good results when I use DPDK/SR-IOV, 1 VF per PF to 1 VM with ixgbevf driver pmd driver. But, when I add more VM with DPDK/SR-IOV enabled NIC 1vf 1pf, both VMs reduced the packets reception by 40%. I am not sure where the problem is since with 1 VM packet receive/send is work

[dpdk-dev] [PATCH] Function __mempool_get_bulk() returns wrong count.

2014-09-27 Thread Neil Horman
On Sat, Sep 27, 2014 at 06:41:41PM +, Wiles, Roger Keith wrote: > > When __mempool_get_bulk() grabs entries from the cache it > returns zero instead of the number of entries obtained. Plus > the stats were increased by the wrong count of objects. > > Signed-off-by: Keith Wiles > --- > lib/l

[dpdk-dev] [PATCH] rte_mempool_dump() crashes with NULL rte_mempool pointer.

2014-09-27 Thread Neil Horman
On Sun, Sep 28, 2014 at 01:14:05AM +, Wiles, Roger Keith wrote: > > On Sep 27, 2014, at 7:37 PM, Neil Horman wrote: > > > On Sat, Sep 27, 2014 at 06:35:01PM +, Wiles, Roger Keith wrote: > >> > >> Check the FILE *f and rte_mempool *mp pointers for NULL and > >> return plus print out a me