[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Fix python pciif script to reference correct 2.0 compatibility variable.
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID 0d8d7071bb2fe9bb051440d3be03aa751a76510f # Parent 6d0a2702bd6deb65c78173d2674c9125546aa960 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> xen-unstable changeset: 9944:7801e09f518cfdf566a405bce2c3f41553e35218 xen-unstable date: Fri May 5 14:01:43 2006 +0100 diff -r 6d0a2702bd6d -r 0d8d7071bb2f tools/python/xen/xend/server/pciif.py --- a/tools/python/xen/xend/server/pciif.py Thu May 04 21:26:02 2006 +0100 +++ b/tools/python/xen/xend/server/pciif.py Fri May 05 14:02:40 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
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |