Re: [dpdk-dev] [PATCH] eal/linux: fix muti-secondary msl create issue

2019-11-20 Thread Ananyev, Konstantin
> > when we run dpdk in docker, process pid may the same. > add rte_rdtsc() to ensure all the names used in rte_fbarray_init > are different. There is another patch addressing similar issue, but in a slightly different way: http://patches.dpdk.org/patch/62972/ > > Signed-off-by: Li Han > --

Re: [dpdk-dev] [PATCH] eal/linux: fix muti-secondary msl create issue

2019-11-19 Thread David Marchand
On Wed, Nov 20, 2019 at 3:48 AM Li Han wrote: > > when we run dpdk in docker, process pid may the same. > add rte_rdtsc() to ensure all the names used in rte_fbarray_init > are different. There is already a fix being prepared by Yasufumi Ogawa. https://patchwork.dpdk.org/patch/62972/ -- David

[dpdk-dev] [PATCH] eal/linux: fix muti-secondary msl create issue

2019-11-19 Thread Li Han
when we run dpdk in docker, process pid may the same. add rte_rdtsc() to ensure all the names used in rte_fbarray_init are different. Signed-off-by: Li Han --- lib/librte_eal/linux/eal/eal_memalloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_eal/linux/eal