search for: save_domain

Displaying 2 results from an estimated 2 matches for "save_domain".

Did you mean: name_domain
2011 Dec 02
7
libxl: error when destroying domain on NetBSD
Hello, When destroying a guest (xl destroy <domid>) on NetBSD I get the following error on the log file: Waiting for domain test (domid 1) to die [pid 11675] Domain 1 is dead Unknown shutdown reason code 255. Destroying domain. Action for shutdown reason code 255 is destroy Domain 1 needs to be cleaned up: destroying the domain do_domctl failed: errno 3 libxl: error:
2012 Aug 15
2
[PATCH] libxl: make domain resume API asynchronous
..._hidden int libxl__domain_pvcontrol_available(libxl__gc *gc, uint32_t domid); diff -r 30bf79cc14d9 -r 7cec0543f67c tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Wed Aug 15 14:45:21 2012 +0100 +++ b/tools/libxl/xl_cmdimpl.c Wed Aug 15 16:58:21 2012 +0100 @@ -2859,7 +2859,7 @@ static int save_domain(const char *p, co close(fd); if (checkpoint) - libxl_domain_resume(ctx, domid, 1); + libxl_domain_resume(ctx, domid, 1, 0); else libxl_domain_destroy(ctx, domid, 0); @@ -3110,7 +3110,7 @@ static void migrate_domain(const char *d if (common_domname)...