Re: [dpdk-dev] [PATCH] eal: move runtime dir creation after args parse

2018-05-15 Thread Thomas Monjalon
15/05/2018 14:16, Burakov, Anatoly: > On 15-May-18 12:36 PM, Andrew Rybchenko wrote: > > On 05/15/2018 01:44 PM, Anatoly Burakov wrote: > >> The intention of the original code was to create runtime data > >> directory as early as possible, however it was moved too early, > >> before the arguments w

Re: [dpdk-dev] [PATCH] eal: move runtime dir creation after args parse

2018-05-15 Thread Burakov, Anatoly
On 15-May-18 12:36 PM, Andrew Rybchenko wrote: On 05/15/2018 01:44 PM, Anatoly Burakov wrote: The intention of the original code was to create runtime data directory as early as possible, however it was moved too early, before the arguments were parsed, resulting in --file-prefix option essentia

Re: [dpdk-dev] [PATCH] eal: move runtime dir creation after args parse

2018-05-15 Thread Andrew Rybchenko
On 05/15/2018 01:44 PM, Anatoly Burakov wrote: The intention of the original code was to create runtime data directory as early as possible, however it was moved too early, before the arguments were parsed, resulting in --file-prefix option essentially not working. Fix this by moving eal_create_

[dpdk-dev] [PATCH] eal: move runtime dir creation after args parse

2018-05-15 Thread Anatoly Burakov
The intention of the original code was to create runtime data directory as early as possible, however it was moved too early, before the arguments were parsed, resulting in --file-prefix option essentially not working. Fix this by moving eal_create_runtime_dir() to after command line arguments par