Re: [dpdk-dev] [PATCH v4] eal: fix proc type auto detection

2019-10-27 Thread David Marchand
On Thu, Oct 24, 2019 at 6:07 PM Burakov, Anatoly wrote: > > On 12-Aug-19 11:03 AM, David Marchand wrote: > > On Wed, Jul 24, 2019 at 6:08 PM Anatoly Burakov > > wrote: > >> > >> Currently, primary process holds an exclusive lock on the config > >> file, thereby preventing other primaries from spi

Re: [dpdk-dev] [PATCH v4] eal: fix proc type auto detection

2019-10-24 Thread Burakov, Anatoly
On 12-Aug-19 11:03 AM, David Marchand wrote: On Wed, Jul 24, 2019 at 6:08 PM Anatoly Burakov wrote: Currently, primary process holds an exclusive lock on the config file, thereby preventing other primaries from spinning up. However, when the primary dies, the lock is no longer being held, even

Re: [dpdk-dev] [PATCH v4] eal: fix proc type auto detection

2019-08-12 Thread Burakov, Anatoly
On 12-Aug-19 11:03 AM, David Marchand wrote: On Wed, Jul 24, 2019 at 6:08 PM Anatoly Burakov wrote: Currently, primary process holds an exclusive lock on the config file, thereby preventing other primaries from spinning up. However, when the primary dies, the lock is no longer being held, even

Re: [dpdk-dev] [PATCH v4] eal: fix proc type auto detection

2019-08-12 Thread Burakov, Anatoly
] [PATCH v4] eal: fix proc type auto detection On Wed, Jul 24, 2019 at 6:08 PM Anatoly Burakov wrote: Currently, primary process holds an exclusive lock on the config file, thereby preventing other primaries from spinning up. However, when the primary dies, the lock is no longer being held, even though

Re: [dpdk-dev] [PATCH v4] eal: fix proc type auto detection

2019-08-12 Thread Van Haaren, Harry
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of David Marchand > Sent: Monday, August 12, 2019 11:04 AM > To: Burakov, Anatoly > Cc: dev ; Richardson, Bruce ; > Stephen Hemminger ; dpdk stable > Subject: Re: [dpdk-dev] [PATCH v4] ea

Re: [dpdk-dev] [PATCH v4] eal: fix proc type auto detection

2019-08-12 Thread David Marchand
On Wed, Jul 24, 2019 at 6:08 PM Anatoly Burakov wrote: > > Currently, primary process holds an exclusive lock on the config > file, thereby preventing other primaries from spinning up. However, > when the primary dies, the lock is no longer being held, even though > there might be other secondary

Re: [dpdk-dev] [PATCH v4] eal: fix proc type auto detection

2019-07-30 Thread Burakov, Anatoly
On 30-Jul-19 9:13 AM, Thomas Monjalon wrote: 24/07/2019 18:07, Anatoly Burakov: Currently, primary process holds an exclusive lock on the config file, thereby preventing other primaries from spinning up. However, when the primary dies, the lock is no longer being held, even though there might be

Re: [dpdk-dev] [PATCH v4] eal: fix proc type auto detection

2019-07-30 Thread Thomas Monjalon
24/07/2019 18:07, Anatoly Burakov: > Currently, primary process holds an exclusive lock on the config > file, thereby preventing other primaries from spinning up. However, > when the primary dies, the lock is no longer being held, even though > there might be other secondary processes still running

[dpdk-dev] [PATCH v4] eal: fix proc type auto detection

2019-07-24 Thread Anatoly Burakov
Currently, primary process holds an exclusive lock on the config file, thereby preventing other primaries from spinning up. However, when the primary dies, the lock is no longer being held, even though there might be other secondary processes still running. The fix is two-fold. First of all, downg