[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v1] cpus: track calls to resume/pause_all_vcpus(
From: |
Paolo Bonzini |
Subject: |
Re: [Qemu-devel] [PATCH v1] cpus: track calls to resume/pause_all_vcpus() |
Date: |
Mon, 9 Apr 2018 15:12:05 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 |
On 09/04/2018 15:07, David Hildenbrand wrote:
> If we have parallel calls to resume/pause_all_vcpus() we can get
> into trouble because the qemu mutex is temporarily dropped while
> waiting for all threads to stop. This can happen e.g. for s390x, where
> resume/pause_all_vcpus() can be triggered by a VCPU.
Why does s390 need to do pause_all_vcpus()/resume_all_vcpus() instead of
just asking the main thread to do it (similar to qemu_system_reset), is
it because diag 308 must be synchronous?
One disadvantage of the current approach is that diag 308 does not obey
-no-reboot.
Paolo