提交 b8906a43 编写于 作者: D Daniel Veillard

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

  attach-disk/attach-interface when < Xen 3.0.4
Daniel
上级 0ee4415c
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
......
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册