From: Bastian Blank <waldi@debian.org>
To: xen-devel@lists.xen.org
Subject: Re: Saving domain in xl does not have proper cleanup
Date: Sun, 16 Sep 2012 17:36:49 +0200 [thread overview]
Message-ID: <20120916153649.GC22987@wavehammer.waldi.eu.org> (raw)
In-Reply-To: <20120916145830.GB22987@wavehammer.waldi.eu.org>
On Sun, Sep 16, 2012 at 04:58:30PM +0200, Bastian Blank wrote:
> Saving a domain without enough available space with xl in 4.2-rc5 fails
> to cleanup completely. The domain informations remains in Xenstore,
> the domain itself seems to remain in a suspended state and there is not
> xl process for it anymore.
This patch fixes this bug. It resumes the domain in case of errors in
the save process.
Bastian
Signed-off-by: Bastian Blank <waldi@debian.org>
diff -r 4027d31caeb0 tools/libxl/xl_cmdimpl.c
--- a/tools/libxl/xl_cmdimpl.c Thu Sep 13 12:21:09 2012 +0100
+++ b/tools/libxl/xl_cmdimpl.c Sun Sep 16 17:33:25 2012 +0200
@@ -2990,15 +2990,18 @@
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,
--
There are certain things men must do to remain men.
-- Kirk, "The Ultimate Computer", stardate 4929.4
next prev parent reply other threads:[~2012-09-16 15:36 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-16 14:58 Saving domain in xl does not have proper cleanup Bastian Blank
2012-09-16 15:36 ` Bastian Blank [this message]
2012-09-25 10:08 ` Ian Campbell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120916153649.GC22987@wavehammer.waldi.eu.org \
--to=waldi@debian.org \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).