[libvirt] [PATCH] qemu: Allow graceful domain destroy

Eric Blake eblake at redhat.com
Mon Aug 22 13:22:51 UTC 2011


On 08/22/2011 04:49 AM, Michal Privoznik wrote:
>
> I don't think that's problem. High priority calls must be guaranteed to
> end in reasonably short time. And although we talk to monitor here, we
> are guaranteed to end. Therefore no need to change my previous patch.

No, we are not guaranteed to end in a reasonably short time.  Monitor 
calls are, by nature, indefinite time commands, because they require 
response from an external process.

Rather, we should add virDomainShutdownFlags() (which would be low 
priority, to match virDomainShutdown() being low priority), and make 
this a flag an option to virDomainShutdownFlags().  That is, you get a 
choice between shutdown via ACPI signal, or shutdown via monitor 
command, but both choices involve interaction with the monitor, and are 
therefore inherently liable to blocking (although shutdown via the 
monitor is much more likely to succeed in a short amount of time if the 
monitor is available, because it does not depend on the guest's reaction 
to ACPI).

>
> 'Accessing monitor' is a bit unfortunate formulation, because 99% calls
> which do access monitor can block indefinitely. And this is the real
> problem. Stuck API. It doesn't really matter if it is because of
> monitor, NFS, etc. I just wanted to provide guide for developers if they
> are in doubt whether to mark API as high or low priority.

The point is that virDomainDestroy() can't make a monitor command, or it 
will get stuck.  I don't think it makes sense to give 
virDomainDestroyFlags() a flag that it can only honor in cases where the 
monitor is not stuck, but which gets skipped otherwise.  I think that if 
we support a flag, then the use of the monitor has to be unconditional 
with that flag, which in turn implies that we need virDomainShutdownFlags().

-- 
Eric Blake   eblake at redhat.com    +1-801-349-2682
Libvirt virtualization library http://libvirt.org




More information about the libvir-list mailing list