From: Bastian Blank Date: Tue, 25 Sep 2012 10:03:51 +0000 (+0100) Subject: xl: resume the domain on suspend failure X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~7862 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=95393dde94267faa1525f6a1a27c6e47fc0fec59;p=xen.git xl: resume the domain on suspend failure The MUST macro calls exit(3) on failure but we need to cleanup and resume. Signed-off-by: Bastian Blank Acked-by: Ian Campbell Committed-by: Ian Campbell --- diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 1627cacfe3..1d77bb4c50 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -2992,15 +2992,18 @@ static int save_domain(uint32_t domid, const char *filename, int checkpoint, save_domain_core_writeconfig(fd, filename, config_data, config_len); - MUST(libxl_domain_suspend(ctx, domid, fd, 0, NULL)); + int rc = libxl_domain_suspend(ctx, domid, fd, 0, NULL); close(fd); - if (checkpoint) + if (rc < 0) + fprintf(stderr, "Failed to save domain, resuming domain\n"); + + if (checkpoint || rc < 0) libxl_domain_resume(ctx, domid, 1, 0); else libxl_domain_destroy(ctx, domid, 0); - exit(0); + exit(rc < 0 ? 1 : 0); } static pid_t create_migration_child(const char *rune, int *send_fd,