[libvirt] [PATCH] qemu: Fix shutoff reason when domain crashes

Eric Blake eblake at redhat.com
Tue Sep 13 16:48:34 UTC 2011


On 09/13/2011 10:39 AM, Jiri Denemark wrote:
> Commit 4454a9efc728b91e791b1f14c26ea23a19d57f48 changed shutoff reason
> from VIR_DOMAIN_SHUTOFF_CRASHED to VIR_DOMAIN_SHUTOFF_FAILED in case we
> see an unexpected EOF on monitor connection. But FAILED reason is
> dedicated for domains that fail to start. CRASHED reason is the right
> one to use in this situation.
> ---
>   src/qemu/qemu_process.c |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/src/qemu/qemu_process.c b/src/qemu/qemu_process.c
> index 8a12e2a..ca4f21f 100644
> --- a/src/qemu/qemu_process.c
> +++ b/src/qemu/qemu_process.c
> @@ -139,7 +139,7 @@ qemuProcessHandleMonitorEOF(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
>           VIR_DEBUG("Monitor connection to '%s' closed without SHUTDOWN event; "
>                     "assuming the domain crashed", vm->def->name);
>           eventReason = VIR_DOMAIN_EVENT_STOPPED_FAILED;
> -        stopReason = VIR_DOMAIN_SHUTOFF_FAILED;
> +        stopReason = VIR_DOMAIN_SHUTOFF_CRASHED;
>           auditReason = "failed";

Is auditReason still correct at this point?  I think so, so I'm giving 
ACK, but you may want to wait for a second review before pushing.

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




More information about the libvir-list mailing list