* src/xend_internal.c: patch from Masayuki Sunou to avoid

attach-disk/attach-interface when < Xen 3.0.4
Daniel
This commit is contained in:
Daniel Veillard 2007-08-16 15:38:38 +00:00
parent 0ee4415cc6
commit b8906a43fa
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Thu Aug 16 17:41:22 CEST 2007 Daniel Veillard <veillard@redhat.com>
* src/xend_internal.c: patch from Masayuki Sunou to avoid
attach-disk/attach-interface when < Xen 3.0.4
Thu Aug 16 15:24:30 CEST 2007 Daniel Veillard <veillard@redhat.com>
* src/virsh.c: vshCommandOptInt was broken as it would not

View File

@ -3091,6 +3091,13 @@ xenDaemonAttachDevice(virDomainPtr domain, char *xml)
priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
/*
* on older Xen without the inactive guests management
* avoid doing this on inactive guests
*/
if ((domain->id < 0) && (priv->xendConfigVersion < 3))
return (-1);
str = virDomainGetOSType(domain);
if (strcmp(str, "linux"))
hvm = 1;