aboutsummaryrefslogtreecommitdiffstats
path: root/tools/python
diff options
context:
space:
mode:
authorShriram Rajagopalan <rshriram@cs.ubc.ca>2011-04-12 13:28:51 +0100
committerShriram Rajagopalan <rshriram@cs.ubc.ca>2011-04-12 13:28:51 +0100
commit7d75f6881e5d438d5eb1d2abda78c64b43ab8544 (patch)
tree784a8163f45d47d842ba59a370fa5722ebfbd47f /tools/python
parent8d247c677a90d44ee43cb9cc9f2987654ff00a28 (diff)
downloadxen-7d75f6881e5d438d5eb1d2abda78c64b43ab8544.tar.gz
xen-7d75f6881e5d438d5eb1d2abda78c64b43ab8544.tar.bz2
xen-7d75f6881e5d438d5eb1d2abda78c64b43ab8544.zip
remus: fix incorrect error handling for switch_qemu_logdirty in checkpoint code
c/s 22275: "tools: cleanup domain save switch_qemu_logdirty callback" introduced a whole bunch of error code fixups. In the process, it also ended up treating the success return code (0) from switch_qemu_logdirty as an error and vice versa. Signed-off-by: Shriram Rajagopalan <rshriram@cs.ubc.ca>
Diffstat (limited to 'tools/python')
-rw-r--r--tools/python/xen/lowlevel/checkpoint/libcheckpoint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python/xen/lowlevel/checkpoint/libcheckpoint.c b/tools/python/xen/lowlevel/checkpoint/libcheckpoint.c
index f4d3e7fd1a..e96dc8f067 100644
--- a/tools/python/xen/lowlevel/checkpoint/libcheckpoint.c
+++ b/tools/python/xen/lowlevel/checkpoint/libcheckpoint.c
@@ -185,7 +185,7 @@ int checkpoint_start(checkpoint_state* s, int fd,
hvm = s->domtype > dt_pv;
if (hvm) {
flags |= XCFLAGS_HVM;
- if (!switch_qemu_logdirty(s, 1))
+ if (switch_qemu_logdirty(s, 1))
return -1;
}