# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1244108510 -3600
# Node ID 2c172f9db417b4111d92453a8eb84ecb8b8bd29e
# Parent 8f64f43624e8ad3a28069c992274cb3240980f40
xm: xen-api, pass-through: create: Use vslot for hotplug_slot
Using func for hotplug_slot is not correct, although func is often
zero, previously zero meant please pick a vslot and asking xend to
pick a vslot was the only method available.
This resolves the following error when using Xen API:
$ xm create hvm.conf
...
Internal error: Timed out waiting for device model action.
Signed-off-by: Simon Horman <horms@xxxxxxxxxxxx>
---
tools/python/xen/xm/xenapi_create.py | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -r 8f64f43624e8 -r 2c172f9db417 tools/python/xen/xm/xenapi_create.py
--- a/tools/python/xen/xm/xenapi_create.py Thu Jun 04 10:41:13 2009 +0100
+++ b/tools/python/xen/xm/xenapi_create.py Thu Jun 04 10:41:50 2009 +0100
@@ -539,7 +539,7 @@ class xenapi_create:
"PPCI":
target_ref,
"hotplug_slot":
- int(pci.attributes["func"].value, 16),
+ int(pci.attributes["vslot"].value, 16),
"options":
get_child_nodes_as_dict(pci,
"pci_opt", "key", "value")
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|