Re: [dpdk-dev] [PATCH] eal: create a runtime directory on windows

2020-10-26 Thread Kadam, Pallavi
Hi Dmitry, On 10/22/2020 12:05 PM, Dmitry Kozlyuk wrote: /* Detect if we are a primary or a secondary process */ enum rte_proc_type_t eal_proc_type_detect(void) @@ -181,6 +231,13 @@ eal_parse_args(int argc, char **argv) } } + /* create runtime data directory */

Re: [dpdk-dev] [PATCH] eal: create a runtime directory on windows

2020-10-22 Thread Dmitry Kozlyuk
> /* Detect if we are a primary or a secondary process */ > enum rte_proc_type_t > eal_proc_type_detect(void) > @@ -181,6 +231,13 @@ eal_parse_args(int argc, char **argv) > } > } > > + /* create runtime data directory */ > + if (internal_conf->no_shconf == 0 && > +

Re: [dpdk-dev] [PATCH] eal: create a runtime directory on windows

2020-10-22 Thread Ranjit Menon
On 10/21/2020 1:26 PM, Pallavi Kadam wrote: Added eal_create_runtime_dir() function in order to run any application as a user that does not have administrator access. Currently, since there is no runtime directory set, the code tries to create a file in C:\ which is only writable with administr

[dpdk-dev] [PATCH] eal: create a runtime directory on windows

2020-10-21 Thread Pallavi Kadam
Added eal_create_runtime_dir() function in order to run any application as a user that does not have administrator access. Currently, since there is no runtime directory set, the code tries to create a file in C:\ which is only writable with administrator privileges. As a result, if the user is not