[dpdk-dev] [DPDK-memory] how qemu waste such long time under dpdk huge page envriment?

2017-06-16 Thread Sam
Hi all, I'm running `QEMU_CMD ...` to create a vm under dpdk huge page envriment (which set huge page 1G). And I enable all events in qemu. For qemu and ovs-dpdk(ovs-2.4.9 with dpdk-2.2.0) environment, detail log is: > 30012@1497443246.678304:object_dynamic_cast_assert qemu:memory-region->qemu:m

Re: [dpdk-dev] [DPDK-memory] how qemu waste such long time under dpdk huge page envriment?

2017-06-16 Thread Sam
BTW, while running ovs-dpdk, this log is also take long time, does that mean dpdk request large memory take long time? EAL: Setting up physically contiguous memory... 2017-06-16 16:11 GMT+08:00 Sam : > Hi all, > > I'm running `QEMU_CMD ...` to create a vm under dpdk huge page envriment > (which

Re: [dpdk-dev] How to get "--base-virtaddr" when using DPDK

2017-06-16 Thread Bruce Richardson
On Thu, Jun 15, 2017 at 12:00:16PM -0600, Junguk Cho wrote: > Hi, > > I have the same situation which is explained here ( > https://github.com/collectd/collectd/issues/2284). > > So, I would like to try "--base-virtaddr" option. > I tried to use "struct rte_memseg *m = rte_eal_get_physmem_layout(

Re: [dpdk-dev] [PATCH 01/38] eal: add support for 24 40 and 48 bit operations

2017-06-16 Thread Bruce Richardson
On Fri, Jun 16, 2017 at 11:10:31AM +0530, Shreyansh Jain wrote: > From: Hemant Agrawal > > Bit Swap and LE<=>BE conversions for 23, 40 and 48 bit width > > Signed-off-by: Hemant Agrawal > --- > .../common/include/generic/rte_byteorder.h | 78 > ++ > 1 file changed,

Re: [dpdk-dev] [DPDK-memory] how qemu waste such long time under dpdk huge page envriment?

2017-06-16 Thread Bruce Richardson
On Fri, Jun 16, 2017 at 04:26:40PM +0800, Sam wrote: > BTW, while running ovs-dpdk, this log is also take long time, does that > mean dpdk request large memory take long time? > > EAL: Setting up physically contiguous memory... > When running with 1G pages, I found that the mmap system call take

Re: [dpdk-dev] [PATCH 01/38] eal: add support for 24 40 and 48 bit operations

2017-06-16 Thread Shreyansh Jain
Hi Bruce, > -Original Message- > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Friday, June 16, 2017 2:27 PM > To: Shreyansh Jain > Cc: dev@dpdk.org; ferruh.yi...@intel.com; Hemant Agrawal > > Subject: Re: [dpdk-dev] [PATCH 01/38] eal: add support for 24 40 and 48 bi

[dpdk-dev] [PATCH v3 3/3] doc: add new ddp get info command

2017-06-16 Thread Andrey Chilikin
This patch adds description of new command for dynamic device personalization profiles: ddp get info (profile_path) Signed-off-by: Andrey Chilikin --- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rs

[dpdk-dev] [PATCH v3 0/3] net/i40e: get information about ddp profile

2017-06-16 Thread Andrey Chilikin
This patch adds ability to request information about dynamic device personalization profile v3: Add command description to test-pmd guide v2: Add rte_pmd_i40e_get_ddp_info() function to i40e version map Add CL to test-pmd for getting information about profile Andrey Chilikin (3): net/i40e: get

[dpdk-dev] [PATCH v3 1/3] net/i40e: get information about ddp profile

2017-06-16 Thread Andrey Chilikin
This patch adds ability to request information about dynamic device personalization profile Signed-off-by: Andrey Chilikin --- drivers/net/i40e/rte_pmd_i40e.c | 163 +- drivers/net/i40e/rte_pmd_i40e.h | 46 + drivers/net/i40e/rte_pmd_i40e_

[dpdk-dev] [PATCH v3 2/3] app/testpmd: enable ddp get info feature

2017-06-16 Thread Andrey Chilikin
This patch demostrates how to get information about dynamic device personalization profile. Command 'ddp get info (path_to_profile)' extracts and prints information about the given profile. Signed-off-by: Andrey Chilikin --- app/test-pmd/cmdline.c | 131 ++

Re: [dpdk-dev] [PATCH 01/38] eal: add support for 24 40 and 48 bit operations

2017-06-16 Thread Thomas Monjalon
16/06/2017 11:21, Shreyansh Jain: > Hi Bruce, > > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > On Fri, Jun 16, 2017 at 11:10:31AM +0530, Shreyansh Jain wrote: > > > From: Hemant Agrawal > > > > > > Bit Swap and LE<=>BE conversions for 23, 40 and 48 bit width > > > > > > Signed-o

Re: [dpdk-dev] [PATCH 01/38] eal: add support for 24 40 and 48 bit operations

2017-06-16 Thread Adrien Mazarguil
Hi Shreyansh, On Fri, Jun 16, 2017 at 09:21:35AM +, Shreyansh Jain wrote: > Hi Bruce, > > > -Original Message- > > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > Sent: Friday, June 16, 2017 2:27 PM > > To: Shreyansh Jain > > Cc: dev@dpdk.org; ferruh.yi...@intel.com; H

[dpdk-dev] [PATCH] vhost: added error log in vhost_user_set_features

2017-06-16 Thread Dariusz Stojaczyk
Since vhost_user_set_features failure is not handled in any way, a single error log has been added to at least to let the user know that something has gone wrong. Signed-off-by: Dariusz Stojaczyk --- lib/librte_vhost/vhost_user.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff -

[dpdk-dev] [PATCH] net/mlx4: fix assertion failure on link update

2017-06-16 Thread Adrien Mazarguil
The interrupt handler can sometimes be triggered for reasons other than a link status event. An assertion failure happen when such events occur while an asynchronous link status update is already scheduled. Address this issue using the same approach as its mlx5 counterpart, commit a9f2fbc42f0c ("n

Re: [dpdk-dev] [PATCH] vhost: added error log in vhost_user_set_features

2017-06-16 Thread Yuanhan Liu
On Fri, Jun 16, 2017 at 04:32:05PM +0200, Dariusz Stojaczyk wrote: > Since vhost_user_set_features failure is not handled in any way, a > single error log has been added to at least to let the user know that > something has gone wrong. Indeed. And applied to dpdk-next-virtio. Thanks. --y

Re: [dpdk-dev] [PATCH] doc: add testpmd commands for DDP

2017-06-16 Thread Ferruh Yigit
On 6/16/2017 3:43 AM, Beilei Xing wrote: > Add testpmd commands for loading DDP package and getting > loaded DDP info list. > > Signed-off-by: Beilei Xing Applied to dpdk-next-net/master, thanks. (Abbreviation DDP extended in document)

[dpdk-dev] [git pull] virtio changes for 17.08-rc1

2017-06-16 Thread Yuanhan Liu
Hi Thomas, Please consider pulling following virtio changes for 17.08-rc1 at git://dpdk.org/next/dpdk-next-virtiomaster Thanks. --yliu --- Daniel Verkamp (1): vhost: access VhostUsrMsg via packed struct Dariusz Stojaczyk (3): vhost: fix malloc size too small v

Re: [dpdk-dev] mlx debug build error with clang

2017-06-16 Thread Adrien Mazarguil
Hi Ferruh, On Tue, Jun 13, 2017 at 04:32:03PM +0100, Ferruh Yigit wrote: > Hi Adrien, Nelio, > > I am getting following build error [1] with clang [2] when debug enabled > for mlx4 and mlx5. > > This started after I update my box, not sure what triggered this. > Can you please help fixing this?

Re: [dpdk-dev] [PATCH v3 0/3] net/i40e: get information about ddp profile

2017-06-16 Thread Ferruh Yigit
On 6/16/2017 10:25 AM, Andrey Chilikin wrote: > This patch adds ability to request information about dynamic device > personalization profile > > v3: > Add command description to test-pmd guide > > v2: > Add rte_pmd_i40e_get_ddp_info() function to i40e version map > Add CL to test-pmd for getting

Re: [dpdk-dev] mlx debug build error with clang

2017-06-16 Thread Ferruh Yigit
On 6/16/2017 1:19 PM, Adrien Mazarguil wrote: > Hi Ferruh, > > On Tue, Jun 13, 2017 at 04:32:03PM +0100, Ferruh Yigit wrote: >> Hi Adrien, Nelio, >> >> I am getting following build error [1] with clang [2] when debug enabled >> for mlx4 and mlx5. >> >> This started after I update my box, not sure

Re: [dpdk-dev] [PATCH 2/7] net/mlx4: fix Rx interrupts with multiple ports

2017-06-16 Thread Ferruh Yigit
On 6/14/2017 12:49 PM, Adrien Mazarguil wrote: > Several Ethernet device structures are allocated on top of a common PCI > device for mlx4 adapters with multiple ports. These inherit a common > interrupt handle from their parent PCI device, which prevents Rx interrupts > from working properly on al

Re: [dpdk-dev] [PATCH 2/7] net/mlx4: fix Rx interrupts with multiple ports

2017-06-16 Thread Adrien Mazarguil
On Fri, Jun 16, 2017 at 02:07:54PM +0100, Ferruh Yigit wrote: > On 6/14/2017 12:49 PM, Adrien Mazarguil wrote: > > Several Ethernet device structures are allocated on top of a common PCI > > device for mlx4 adapters with multiple ports. These inherit a common > > interrupt handle from their parent

Re: [dpdk-dev] [PATCH 2/7] net/mlx4: fix Rx interrupts with multiple ports

2017-06-16 Thread Ferruh Yigit
On 6/16/2017 2:39 PM, Adrien Mazarguil wrote: > On Fri, Jun 16, 2017 at 02:07:54PM +0100, Ferruh Yigit wrote: >> On 6/14/2017 12:49 PM, Adrien Mazarguil wrote: >>> Several Ethernet device structures are allocated on top of a common PCI >>> device for mlx4 adapters with multiple ports. These inherit

Re: [dpdk-dev] [PATCH 0/7] Fix Rx interrupt support in mlx4 and mlx5

2017-06-16 Thread Ferruh Yigit
On 6/14/2017 12:49 PM, Adrien Mazarguil wrote: > Several issues mainly related to error handling were found in both > implementations as they share most of their Rx interrupts handling code. > > Another problem with the mlx4 implementation is that it does not work > properly with multiple ports ad

Re: [dpdk-dev] [PATCH] app/testpmd: fix build without ixgbe

2017-06-16 Thread Thomas Monjalon
16/06/2017 03:29, Lu, Wenzhuo: > From: Nicolau, Radu > > > > Looks ok to me, but why would one enable IXGBE_BYPASS without enabling > > IXGBE? > > Although the scenario doesn't make sense, I think it's better to add more > check to avoid the users making any mistake. Applied

Re: [dpdk-dev] [PATCH v2 1/3] eal: introduce big and little endian types

2017-06-16 Thread Thomas Monjalon
Series applied, thanks

Re: [dpdk-dev] [PATCH] eal: remove vdev probe by dev args

2017-06-16 Thread Thomas Monjalon
Please Jan, could you comment? 09/06/2017 11:21, Ferruh Yigit: > On 6/8/2017 9:45 PM, Thomas Monjalon wrote: > > 10/05/2017 13:01, Ferruh Yigit: > >> Virtual device/driver probing done via name. > >> > >> A new alternative method introduced to probe the device with providing > >> driver name in de

Re: [dpdk-dev] [PATCH] mem: support page locking on FreeBSD

2017-06-16 Thread Bruce Richardson
On Thu, Jun 15, 2017 at 07:50:55PM +0200, Thomas Monjalon wrote: > The function rte_mem_lock_page() was added for Linux only. > The file eal_common_memory.c is a better place to make it > available in FreeBSD also. > > The issue is seen when trying to compile bnxt on FreeBSD: > bnxt_hwrm.c:

Re: [dpdk-dev] [PATCH] net/bonding: support bifurcated driver in eal cli using --vdev

2017-06-16 Thread Thomas Monjalon
14/06/2017 12:49, Gowrishankar: > At present, creating bonding devices using --vdev is broken for PMD like > mlx5 as it is neither UIO nor VFIO based and hence PMD driver is unknown > to find_port_id_by_pci_addr(), as below. > > testpmd --vdev 'net_bonding0,mode=1,slave=,socket_id=0' > > PMD: bo

Re: [dpdk-dev] [PATCH v2] test/test_mbuf: remove mempool global var

2017-06-16 Thread Olivier Matz
On Thu, 8 Jun 2017 14:28:31 +, Santosh Shukla wrote: > Let test_mbuf alloc and free mempool. > > Cc: sta...@dpdk.org > Signed-off-by: Santosh Shukla Acked-by: Olivier Matz

Re: [dpdk-dev] mlx debug build error with clang

2017-06-16 Thread Ferruh Yigit
On 6/16/2017 1:58 PM, Ferruh Yigit wrote: > On 6/16/2017 1:19 PM, Adrien Mazarguil wrote: >> Hi Ferruh, >> >> On Tue, Jun 13, 2017 at 04:32:03PM +0100, Ferruh Yigit wrote: >>> Hi Adrien, Nelio, >>> >>> I am getting following build error [1] with clang [2] when debug enabled >>> for mlx4 and mlx5. >

Re: [dpdk-dev] [PATCH] mem: support page locking on FreeBSD

2017-06-16 Thread Thomas Monjalon
16/06/2017 16:31, Bruce Richardson: > On Thu, Jun 15, 2017 at 07:50:55PM +0200, Thomas Monjalon wrote: > > The function rte_mem_lock_page() was added for Linux only. > > The file eal_common_memory.c is a better place to make it > > available in FreeBSD also. > > > > The issue is seen when trying t

Re: [dpdk-dev] [RFC] Kernel Control Path (KCP)

2017-06-16 Thread Ferruh Yigit
Hi Alex, On 6/15/2017 1:07 PM, Alex Rosenbaum wrote: > please excuse me if I missed out of the previous conversation and > asking these questions again... > > Why create a new driver instead of improving the existing KNI driver? For control path, KNI uses Linux kernel driver within KNI kernel mo

Re: [dpdk-dev] [RFC] Kernel Control Path (KCP)

2017-06-16 Thread Ferruh Yigit
On 5/28/2017 5:55 PM, Wiles, Keith wrote: > >> On May 26, 2017, at 11:52 AM, Ferruh Yigit wrote: >> >> We are looking for re-sending [1] the Kernel Control Path (KCP) >> with some updates [2]. >> >> Mainly this is an usability improvement for DPDK. >> >> And a quick reminder about what KCP is: >>

Re: [dpdk-dev] [PATCH v2 1/2] net/e1000: fix flex type filter

2017-06-16 Thread Ferruh Yigit
On 6/16/2017 6:04 AM, Wei Zhao wrote: > Fix bug in parse the flex info of wrong use local > variable index which will cause filter fail, and some > error in calculation mask. > > Fixes: 7cd77faf7129 ("net/igb: parse flow API flex filter") > > Signed-off-by: Wei Zhao Series applied to dpdk-next-

Re: [dpdk-dev] how to poll a 40G/100G NIC with multiqueues without RSS

2017-06-16 Thread Chilikin, Andrey
With XL710 NICs you can use flexible payload for RSS for ETH_RSS_L2_PAYLOAD. By default XL710 PMD will extract first 16 bytes of the payload. You can include these 16 bytes for RSS with rte_eth_dev_filter_ctrl(...,RTE_ETH_FILTER_HASH, RTE_ETH_FILTER_SET, ...) /Andrey -Original Message-

Re: [dpdk-dev] [RFC] Kernel Control Path (KCP)

2017-06-16 Thread Stephen Hemminger
On Fri, 16 Jun 2017 16:27:47 +0100 Ferruh Yigit wrote: > Hi Alex, > > On 6/15/2017 1:07 PM, Alex Rosenbaum wrote: > > please excuse me if I missed out of the previous conversation and > > asking these questions again... > > > > Why create a new driver instead of improving the existing KNI drive