|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] Fix python pciif script to reference correct 2.0 compati
# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID 7801e09f518cfdf566a405bce2c3f41553e35218
# Parent f07676d5c3ab62e5af6359202bd94c499a9ecc7f
Fix python pciif script to reference correct 2.0 compatibility variable.
In the Xen 2.0.x compatibility section of xend (where we try to parse
the s-expressions if they came from an SXP configuration file for Xen
2.0.x), the wrong variable is referenced. This fix corrects the python
script to use the correct variable.
Thanks to Mike Wright for reporting this.
Signed-off-by: Ryan Wilson <hap9@xxxxxxxxxxxxxx>
---
tools/python/xen/xend/server/pciif.py | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -r f07676d5c3ab -r 7801e09f518c tools/python/xen/xend/server/pciif.py
--- a/tools/python/xen/xend/server/pciif.py Fri May 05 13:59:17 2006 +0100
+++ b/tools/python/xen/xend/server/pciif.py Fri May 05 14:01:43 2006 +0100
@@ -94,7 +94,7 @@ class PciController(DevController):
else:
# Xen 2.0 configuration compatibility
- domain = get_param(dev_config, 'domain', 0)
+ domain = get_param(config, 'domain', 0)
bus = get_param(config, 'bus')
slot = get_param(config, 'dev')
func = get_param(config, 'func')
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
|
|
|
|