+Thu Jan 18 13:37:02 EST 2007 Daniel Berrange <berrange@redhat.com>
+
+ * src/xend_internal.c: Tweak some of the new inactive domain methods
+ to only run when XenD is >= 3.0.4, so it falls back correctly to
+ the src/xm_internal.c driver.
+
Wed Jan 10 16:20:02 CET 2007 Daniel Veillard <veillard@redhat.com>
* docs/libvirt.rng: udated for the upcoming KVM and QEmu support
virXendError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
return (NULL);
}
+ if (conn->xendConfigVersion < 3)
+ return(NULL);
sexpr = virDomainParseXMLDesc(xmlDesc, &name, conn->xendConfigVersion);
if ((sexpr == NULL) || (name == NULL)) {
int ret = -1;
struct sexpr *_for_i, *node;
+ if (conn->xendConfigVersion < 3)
+ return(-1);
+
root = sexpr_get(conn, "/xend/domain?state=halted");
if (root == NULL)
goto error;
int ret = -1;
struct sexpr *_for_i, *node;
+ if (conn->xendConfigVersion < 3)
+ return(-1);
+
if ((names == NULL) || (maxnames <= 0))
goto error;
root = sexpr_get(conn, "/xend/domain?state=halted");