From: Ian Campbell <Ian.Campbell@citrix.com>
To: Ian Jackson <ian.jackson@eu.citrix.com>
Cc: "xen-devel@lists.xen.org" <xen-devel@lists.xen.org>
Subject: Re: [PATCH 02/15] libxl: domain save: rename variables etc.
Date: Wed, 30 May 2012 18:32:38 +0100 [thread overview]
Message-ID: <1338399158.14877.21.camel@dagon.hellion.org.uk> (raw)
In-Reply-To: <1338394606-22693-3-git-send-email-ian.jackson@eu.citrix.com>
> @@ -921,71 +913,72 @@ int libxl__domain_suspend_common(libxl__gc *gc, uint32_t domid, int fd,
> return ERROR_INVAL;
> }
>
> - memset(&si, 0, sizeof(si));
> - flags = (live) ? XCFLAGS_LIVE : 0
> + xcflags = (live) ? XCFLAGS_LIVE : 0
> | (debug) ? XCFLAGS_DEBUG : 0
> | (hvm) ? XCFLAGS_HVM : 0;
>
> + dss->domid = domid;
> + dss->xcflags = xcflags;
> + dss->hvm = hvm;
> + dss->gc = gc;
> + dss->suspend_eventchn = -1;
> + dss->guest_responded = 0;
> +
> if (r_info != NULL) {
> - si.interval = r_info->interval;
> + dss->interval = r_info->interval;
> if (r_info->compression)
> - flags |= XCFLAGS_CHECKPOINT_COMPRESS;
> - si.save_fd = fd;
> + xcflags |= XCFLAGS_CHECKPOINT_COMPRESS;
You now do this after the "dss->xcflags = xcflags" (since you moved that
block up), won't that mean you loose it?
(xcflags gets used again below in the call to xc_domain_save, but I
guess that'll go away during asyncification).
> + dss->save_fd = fd;
> }
> else
> - si.save_fd = -1;
> -
> - si.domid = domid;
> - si.flags = flags;
> - si.hvm = hvm;
> - si.gc = gc;
> - si.suspend_eventchn = -1;
> - si.guest_responded = 0;
> + dss->save_fd = -1;
next prev parent reply other threads:[~2012-05-30 17:32 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-30 16:16 [PATCH v2 00/15] libxl: domain save/restore: run in a separate process Ian Jackson
2012-05-30 16:16 ` [PATCH 01/15] libxc: xc_domain_restore, make toolstack_restore const-correct Ian Jackson
2012-05-30 17:26 ` Ian Campbell
2012-05-31 9:55 ` Ian Jackson
2012-05-31 11:16 ` Ian Campbell
2012-05-31 14:00 ` Ian Jackson
2012-05-30 16:16 ` [PATCH 02/15] libxl: domain save: rename variables etc Ian Jackson
2012-05-30 17:32 ` Ian Campbell [this message]
2012-05-31 10:02 ` Ian Jackson
2012-05-30 16:16 ` [PATCH 03/15] libxl: domain restore: reshuffle, preparing for ao Ian Jackson
2012-05-30 16:16 ` [PATCH 04/15] libxl: domain save: API changes for asynchrony Ian Jackson
2012-05-30 16:16 ` [PATCH 05/15] libxl: domain save/restore: run in a separate process Ian Jackson
2012-05-30 16:16 ` [PATCH 06/15] libxl: rename libxl_dom:save_helper to physmap_path Ian Jackson
2012-05-30 17:44 ` Ian Campbell
2012-05-30 16:16 ` [PATCH 07/15] libxl: provide libxl__xs_*_checked and libxl__xs_transaction_* Ian Jackson
2012-05-30 17:48 ` Ian Campbell
2012-05-31 10:22 ` Ian Jackson
2012-05-31 11:17 ` Ian Campbell
2012-05-30 16:16 ` [PATCH 08/15] libxl: wait for qemu to acknowledge logdirty command Ian Jackson
2012-05-30 16:16 ` [PATCH 09/15] libxl: datacopier: provide "prefix data" facilit Ian Jackson
2012-05-31 7:52 ` Ian Campbell
2012-05-31 10:32 ` Ian Jackson
2012-05-31 11:20 ` Ian Campbell
2012-05-31 14:07 ` Ian Jackson
2012-05-30 16:16 ` [PATCH 10/15] libxl: prepare for asynchronous writing of qemu save file Ian Jackson
2012-05-30 16:16 ` [PATCH 11/15] libxl: Make libxl__domain_save_device_model asynchronous Ian Jackson
2012-05-30 16:16 ` [PATCH 12/15] xl: Handle return value from libxl_domain_suspend correctly Ian Jackson
2012-05-31 7:53 ` Ian Campbell
2012-05-30 16:16 ` [PATCH 13/15] libxl: do not leak dms->saved_state Ian Jackson
2012-05-31 7:54 ` Ian Campbell
2012-05-30 16:16 ` [PATCH 14/15] libxl: do not leak spawned middle children Ian Jackson
2012-05-30 16:16 ` [PATCH 15/15] libxl: do not leak an event struct on ignored ao progress Ian Jackson
2012-05-31 7:55 ` 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=1338399158.14877.21.camel@dagon.hellion.org.uk \
--to=ian.campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--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).