From mboxrd@z Thu Jan 1 00:00:00 1970 From: rshriram@cs.ubc.ca Subject: [PATCH 6 of 6 V2] libxl: resume instead of unpause on xl save -c Date: Tue, 31 Jan 2012 20:38:25 -0800 Message-ID: <545f88c2bc73b063a5d0.1328071105@athos.nss.cs.ubc.ca> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com Cc: anthony.perard@citrix.com, brendan@cs.ubc.ca, ian.jackson@eu.citrix.com, ian.campbell@citrix.com List-Id: xen-devel@lists.xenproject.org # HG changeset patch # User Shriram Rajagopalan # Date 1328070814 28800 # Node ID 545f88c2bc73b063a5d0e7adbd95baed4d93790f # Parent 68ca0e9ea59c4c67d3a10ce968cca7aff50184fe libxl: resume instead of unpause on xl save -c The guest is "suspended" via libxl_domain_suspend when taking a snapshot. So call libxl_domain_resume instead of libxl_domain_unpause, when taking a checkpoint of the domain (using xl save -c). Signed-off-by: Shriram Rajagopalan diff -r 68ca0e9ea59c -r 545f88c2bc73 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Tue Jan 31 20:33:34 2012 -0800 +++ b/tools/libxl/xl_cmdimpl.c Tue Jan 31 20:33:34 2012 -0800 @@ -2524,7 +2524,7 @@ static int save_domain(const char *p, co close(fd); if (checkpoint) - libxl_domain_unpause(ctx, domid); + libxl_domain_resume(ctx, domid, 1); else libxl_domain_destroy(ctx, domid);