Re: [dpdk-dev] [PATCH v2] devtools: add test script for meson builds

2018-05-26 Thread Thomas Monjalon
25/05/2018 17:18, Bruce Richardson: > On Fri, May 25, 2018 at 04:51:58PM +0200, Thomas Monjalon wrote: > > +default_path=$PATH > > + > > +# Load config options > > +. $(dirname $(readlink -e $0))/load-devel-config > > + > > Why is this needed here, it seems to be called before each individual > co

[dpdk-dev] [PATCH v3] devtools: add test script for meson builds

2018-05-26 Thread Thomas Monjalon
From: Bruce Richardson To simplify testing with the meson and ninja builds, we can add a script to set up and do multiple builds. Currently this script sets up: * clang and gcc builds * builds using static and shared linkage for binaries (libs are always built as both) * a build using the low

[dpdk-dev] [PATCH v4] devtools: add test script for meson builds

2018-05-26 Thread Thomas Monjalon
From: Bruce Richardson To simplify testing with the meson and ninja builds, we can add a script to set up and do multiple builds. Currently this script sets up: * clang and gcc builds * builds using static and shared linkage for binaries (libs are always built as both) * a build using the low

Re: [dpdk-dev] [PATCH v1] doc: add SPDX Licence to doc files

2018-05-26 Thread Hemant Agrawal
-Original Message- From: Kovacevic, Marko [mailto:marko.kovace...@intel.com] Sent: Friday, May 25, 2018 9:00 PM To: Thomas Monjalon ; Hemant Agrawal ; Yigit, Ferruh Cc: dev@dpdk.org; Mcnamara, John Subject: RE: [dpdk-dev] [PATCH v1] doc: add SPDX Licence to doc files > > > It has be

[dpdk-dev] [PATCH v2] net/mlx5: fix memory region cache init

2018-05-26 Thread Xueming Li
This patch moved MR cache init from device configuration function to probe function to make sure init only once. Fixes: 974f1e7ef146 ("net/mlx5: add new memory region support") Cc: ys...@mellanox.com Signed-off-by: Xueming Li --- drivers/net/mlx5/mlx5.c| 13 + drivers/net/ml

[dpdk-dev] [PATCH] app/testpmd: distribute queues to cores

2018-05-26 Thread Xueming Li
Current topology distribute forwarding streams to lcores by port, this make unbalanced loading when port number larger than 2: lcore 0: P0Q0->P1Q0, P0Q1->P1Q1 locre 1: P1Q0->P0Q0, P1Q1->P0Q1 If only one port has traffic, only one locre get fully loaded and the other one get no forwa

Re: [dpdk-dev] [PATCH v2] net/mlx5: fix memory region cache init

2018-05-26 Thread Yongseok Koh
> On May 26, 2018, at 6:28 AM, Xueming Li wrote: > > This patch moved MR cache init from device configuration function to > probe function to make sure init only once. > > Fixes: 974f1e7ef146 ("net/mlx5: add new memory region support") > Cc: ys...@mellanox.com > > Signed-off-by: Xueming Li >

Re: [dpdk-dev] [PATCH] ethdev: Add rte_tm_get_number_of_leaf_nodes to .map file

2018-05-26 Thread Ferruh Yigit
On 5/25/2018 8:59 PM, Ben Shelton wrote: > The rte_tm_get_number_of_leaf_nodes() API function was added in DPDK > 17.08. However, it was added to the .map file with the wrong function > name (rte_tm_get_leaf_nodes), which was subsequently removed in commit > 3e8ea3d ('lib: remove unused map symbol

Re: [dpdk-dev] [PATCH] ethdev: Add rte_tm_get_number_of_leaf_nodes to .map file

2018-05-26 Thread Ferruh Yigit
On 5/26/2018 11:21 PM, Ferruh Yigit wrote: > On 5/25/2018 8:59 PM, Ben Shelton wrote: >> The rte_tm_get_number_of_leaf_nodes() API function was added in DPDK >> 17.08. However, it was added to the .map file with the wrong function >> name (rte_tm_get_leaf_nodes), which was subsequently removed in

Re: [dpdk-dev] [PATCH] app/testpmd: fix failsafe PMD failure on exit

2018-05-26 Thread Yuanhan Liu
On Tue, May 22, 2018 at 07:35:08PM +0100, Ferruh Yigit wrote: > vdevs detach on testpmd exit implemented as workaround to fix > a virtio-user issue. The issue was virtio-user cleanup is not > called and existing socket file not cleaned up which will fail > next run. > > The vdev cleanup causing pr

Re: [dpdk-dev] [PATCH v2] doc: announce removal of indirect mbuf check macro

2018-05-26 Thread Shahaf Shuler
Friday, May 25, 2018 4:20 AM, Yongseok Koh: > Subject: [dpdk-dev] [PATCH v2] doc: announce removal of indirect mbuf > check macro > > Link: > https://emea01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fdpd > k.org%2Fml%2Farchives%2Fdev%2F2018- > April%2F099476.html&data=02%7C01%7Cshahafs%40m

Re: [dpdk-dev] [PATCH] net/mlx5: fix crash when configure is not called

2018-05-26 Thread Shahaf Shuler
Thursday, May 24, 2018 9:22 PM, Yongseok Koh: > Subject: Re: [PATCH] net/mlx5: fix crash when configure is not called > > > > On May 24, 2018, at 7:36 AM, Adrien Mazarguil > wrote: > > > > Although uncommon, applications may destroy a device immediately after > > probing it without going through

Re: [dpdk-dev] [PATCH v2] net/mlx5: fix memory region cache init

2018-05-26 Thread Shahaf Shuler
Saturday, May 26, 2018 8:08 PM, Yongseok Koh: > Subject: Re: [PATCH v2] net/mlx5: fix memory region cache init > > > > On May 26, 2018, at 6:28 AM, Xueming Li > wrote: > > > > This patch moved MR cache init from device configuration function to > > probe function to make sure init only once. > >

Re: [dpdk-dev] [PATCH v2] net/mlx5: fix memory region cache init

2018-05-26 Thread Shahaf Shuler
Ferruh, Sunday, May 27, 2018 8:05 AM, Shahaf Shuler: > Subject: Re: [dpdk-dev] [PATCH v2] net/mlx5: fix memory region cache init > > Saturday, May 26, 2018 8:08 PM, Yongseok Koh: > > Subject: Re: [PATCH v2] net/mlx5: fix memory region cache init > > > > > > > On May 26, 2018, at 6:28 AM, Xueming

[dpdk-dev] 17.11.3 (LTS) patches review and test

2018-05-26 Thread Yuanhan Liu
Hi all, Here is a list of patches targeted for LTS release 17.11.3. Please help review and test. The planned date for the final release is 8th, Jun. Before that, please let me know if anyone has objections with these patches being applied. These patches are located at branch 17.11 of dpdk-stable