Re: [PATCH] conf: Add qemu_job_wait_time option

2020-05-07 Thread Nobuhiro Miki
On 2020/05/04 17:13, Michal Privoznik wrote: >On 5/4/20 10:07 AM, Peter Krempa wrote: >> On Fri, May 01, 2020 at 16:09:04 +0900, MIKI Nobuhiro wrote: >>> The waiting time to acquire the lock times out, which leads to a segment >>> fault. >> >> Could you please elaborate here? Adding this band-aid

Re: [PATCH] conf: Add qemu_job_wait_time option

2020-05-04 Thread Michal Privoznik
On 5/4/20 10:07 AM, Peter Krempa wrote: On Fri, May 01, 2020 at 16:09:04 +0900, MIKI Nobuhiro wrote: The waiting time to acquire the lock times out, which leads to a segment fault. Could you please elaborate here? Adding this band-aid is pointless if it can timeout later. We do want to fix any

Re: [PATCH] conf: Add qemu_job_wait_time option

2020-05-04 Thread Peter Krempa
On Fri, May 01, 2020 at 16:09:04 +0900, MIKI Nobuhiro wrote: > The waiting time to acquire the lock times out, which leads to a segment > fault. Could you please elaborate here? Adding this band-aid is pointless if it can timeout later. We do want to fix any locking issue but without information

[PATCH] conf: Add qemu_job_wait_time option

2020-05-01 Thread MIKI Nobuhiro
The waiting time to acquire the lock times out, which leads to a segment fault. In essence we should make improvements around locks, but as a workaround we will change the timeout to allow the user to increase it. This value was defined as 30 seconds, so use it as the default value. The logs are as