Re: [dpdk-dev] [PATCH 1/2] eal/windows: Add needed calls to detect vdev PMD

2020-07-07 Thread Ranjit Menon
On 7/7/2020 1:39 AM, Dmitry Kozlyuk wrote: On Tue, 7 Jul 2020 08:04:00 +, Tal Shnaiderman wrote: Dmitry, It looks like we got to this stage since hugepage_claim_privilege() cannot actually detect that "Lock pages" isn't granted to the current user, as a result we fail on the first usage

Re: [dpdk-dev] [PATCH 1/2] eal/windows: Add needed calls to detect vdev PMD

2020-07-07 Thread Dmitry Kozlyuk
On Tue, 7 Jul 2020 08:04:00 +, Tal Shnaiderman wrote: > Dmitry, It looks like we got to this stage since hugepage_claim_privilege() > cannot actually detect that "Lock pages" isn't granted to the current user, > as a result we fail on the first usage of a memory management call [in this > ca

Re: [dpdk-dev] [PATCH 1/2] eal/windows: Add needed calls to detect vdev PMD

2020-07-07 Thread Tal Shnaiderman
Thank you for the comments, you're right, either master has changed since I sent those patches or I missed out on some exports/includes, anyhow I'll fix and resend v2. The rte_panic you're seeing is unrelated to the new code (BTW, you should build a debug version if you want to see rte_panic's

Re: [dpdk-dev] [PATCH 1/2] eal/windows: Add needed calls to detect vdev PMD

2020-07-06 Thread Narcisa Ana Maria Vasile
On Wed, Jun 24, 2020 at 05:56:20PM +0300, tal...@mellanox.com wrote: > From: Tal Shnaiderman > > Add needed function calls in rte_eal_init to detect vdev PMD. > > eal_option_device_parse() > rte_service_init() > rte_bus_probe() > > Signed-off-by: Tal Shnaiderman > --- > lib/librte_eal/common/

Re: [dpdk-dev] [PATCH 1/2] eal/windows: Add needed calls to detect vdev PMD

2020-07-06 Thread Thomas Monjalon
Windows team, I am expecting at least 2 reviews on this patch. 24/06/2020 16:56, tal...@mellanox.com: > From: Tal Shnaiderman > > Add needed function calls in rte_eal_init to detect vdev PMD. > > eal_option_device_parse() > rte_service_init() > rte_bus_probe() > > Signed-off-by: Tal Shnaiderma

[dpdk-dev] [PATCH 1/2] eal/windows: Add needed calls to detect vdev PMD

2020-06-24 Thread talshn
From: Tal Shnaiderman Add needed function calls in rte_eal_init to detect vdev PMD. eal_option_device_parse() rte_service_init() rte_bus_probe() Signed-off-by: Tal Shnaiderman --- lib/librte_eal/common/meson.build | 1 + lib/librte_eal/windows/eal.c | 19 +++ 2 files cha