diff options
author | Ian Jackson | 2017-09-15 18:50:47 +0200 |
---|---|---|
committer | Ian Jackson | 2018-04-26 17:29:51 +0200 |
commit | 74aae6bff4fec3a655a2da7053ac2edbaf51e7b6 (patch) | |
tree | 0eeebef0f46efde502c931fd9cf09879b659bdb4 /hw/i386/xen | |
parent | xen: defer call to xen_restrict until just before os_setup_post (diff) | |
download | qemu-74aae6bff4fec3a655a2da7053ac2edbaf51e7b6.tar.gz qemu-74aae6bff4fec3a655a2da7053ac2edbaf51e7b6.tar.xz qemu-74aae6bff4fec3a655a2da7053ac2edbaf51e7b6.zip |
xen: destroy_hvm_domain: Move reason into a variable
We are going to want to reuse this.
No functional change.
Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Reviewed-by: Anthony PERARD <anthony.perard@citrix.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
Diffstat (limited to 'hw/i386/xen')
-rw-r--r-- | hw/i386/xen/xen-hvm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/i386/xen/xen-hvm.c b/hw/i386/xen/xen-hvm.c index 9c3b6b312e..3590d99934 100644 --- a/hw/i386/xen/xen-hvm.c +++ b/hw/i386/xen/xen-hvm.c @@ -1387,12 +1387,13 @@ void destroy_hvm_domain(bool reboot) xc_interface *xc_handle; int sts; + unsigned int reason = reboot ? SHUTDOWN_reboot : SHUTDOWN_poweroff; + xc_handle = xc_interface_open(0, 0, 0); if (xc_handle == NULL) { fprintf(stderr, "Cannot acquire xenctrl handle\n"); } else { - sts = xc_domain_shutdown(xc_handle, xen_domid, - reboot ? SHUTDOWN_reboot : SHUTDOWN_poweroff); + sts = xc_domain_shutdown(xc_handle, xen_domid, reason); if (sts != 0) { fprintf(stderr, "xc_domain_shutdown failed to issue %s, " "sts %d, %s\n", reboot ? "reboot" : "poweroff", |