Re: [PATCH v2 10/13] qemu: avoid deadlock in qemuDomainObjStopWorker

2020-09-04 Thread Daniel P . Berrangé
On Fri, Sep 04, 2020 at 05:46:18PM +0100, Daniel P. Berrangé wrote: > On Thu, Jul 23, 2020 at 01:14:10PM +0300, Nikolay Shirokovskiy wrote: > > We are dropping the only reference here so that the event loop thread > > is going to be exited synchronously. In order to avoid deadlocks we > > need to

Re: [PATCH v2 10/13] qemu: avoid deadlock in qemuDomainObjStopWorker

2020-09-04 Thread Daniel P . Berrangé
On Thu, Jul 23, 2020 at 01:14:10PM +0300, Nikolay Shirokovskiy wrote: > We are dropping the only reference here so that the event loop thread > is going to be exited synchronously. In order to avoid deadlocks we > need to unlock the VM so that any handler being called can finish > execution and

Re: [PATCH v2 10/13] qemu: avoid deadlock in qemuDomainObjStopWorker

2020-08-13 Thread Daniel Henrique Barboza
On 7/23/20 7:14 AM, Nikolay Shirokovskiy wrote: We are dropping the only reference here so that the event loop thread is going to be exited synchronously. In order to avoid deadlocks we need to unlock the VM so that any handler being called can finish execution and thus even loop thread be

Re: [PATCH v2 10/13] qemu: avoid deadlock in qemuDomainObjStopWorker

2020-08-13 Thread Daniel Henrique Barboza
On 8/11/20 3:39 AM, Nikolay Shirokovskiy wrote: On 10.08.2020 20:40, Daniel Henrique Barboza wrote: On 7/23/20 7:14 AM, Nikolay Shirokovskiy wrote: We are dropping the only reference here so that the event loop thread is going to be exited synchronously. In order to avoid deadlocks we

Re: [PATCH v2 10/13] qemu: avoid deadlock in qemuDomainObjStopWorker

2020-08-11 Thread Nikolay Shirokovskiy
On 10.08.2020 20:40, Daniel Henrique Barboza wrote: > > > On 7/23/20 7:14 AM, Nikolay Shirokovskiy wrote: >> We are dropping the only reference here so that the event loop thread >> is going to be exited synchronously. In order to avoid deadlocks we >> need to unlock the VM so that any

Re: [PATCH v2 10/13] qemu: avoid deadlock in qemuDomainObjStopWorker

2020-08-10 Thread Daniel Henrique Barboza
On 7/23/20 7:14 AM, Nikolay Shirokovskiy wrote: We are dropping the only reference here so that the event loop thread is going to be exited synchronously. In order to avoid deadlocks we need to unlock the VM so that any handler being called can finish execution and thus even loop thread be

[PATCH v2 10/13] qemu: avoid deadlock in qemuDomainObjStopWorker

2020-07-23 Thread Nikolay Shirokovskiy
We are dropping the only reference here so that the event loop thread is going to be exited synchronously. In order to avoid deadlocks we need to unlock the VM so that any handler being called can finish execution and thus even loop thread be finished too. Signed-off-by: Nikolay Shirokovskiy ---