xen-devel
[Xen-devel] [patch v2] xend: pass-through: Use AUTO_PHP_SLOT as unknown
This fixes a few cases where 0 is still used for an known vslot.
Cc: Dexuan Cui <dexuan.cui@xxxxxxxxx>
Cc: Masaki Kanno <kanno.masaki@xxxxxxxxxxxxxx>
Signed-off-by: Simon Horman <horms@xxxxxxxxxxxx>
---
* Updated to use spaces instead of tabs for indentation
Index: xen-unstable.hg/tools/python/xen/xend/server/pciif.py
===================================================================
--- xen-unstable.hg.orig/tools/python/xen/xend/server/pciif.py 2009-06-04
08:28:46.000000000 +1000
+++ xen-unstable.hg/tools/python/xen/xend/server/pciif.py 2009-06-04
08:28:54.000000000 +1000
@@ -74,7 +74,8 @@ class PciController(DevController):
bus = parse_hex(pci_config.get('bus', 0))
slot = parse_hex(pci_config.get('slot', 0))
func = parse_hex(pci_config.get('func', 0))
- vslot = parse_hex(pci_config.get('vslot', 0))
+ vslot = parse_hex(pci_config.get('vslot',
+ '0x' + AUTO_PHP_SLOT_STR))
if pci_config.has_key('opts'):
opts = serialise_pci_opts(pci_config['opts'])
Index: xen-unstable.hg/tools/python/xen/xend/XendConfig.py
===================================================================
--- xen-unstable.hg.orig/tools/python/xen/xend/XendConfig.py 2009-06-04
08:28:46.000000000 +1000
+++ xen-unstable.hg/tools/python/xen/xend/XendConfig.py 2009-06-04
08:28:54.000000000 +1000
@@ -31,7 +31,7 @@ from xen.xend.XendDSCSI import XendDSCSI
from xen.xend.XendError import VmError
from xen.xend.XendDevices import XendDevices
from xen.xend.PrettyPrint import prettyprintstring
-from xen.xend.XendConstants import DOM_STATE_HALTED
+from xen.xend.XendConstants import DOM_STATE_HALTED, AUTO_PHP_SLOT_STR
from xen.xend.xenstore.xstransact import xstransact
from xen.xend.server.BlktapController import blktap_disk_types
from xen.xend.server.netif import randomMAC
@@ -1235,7 +1235,8 @@ class XendConfig(dict):
dpci_record = {
'VM': self['uuid'],
'PPCI': ppci_uuid,
- 'hotplug_slot': pci_dev.get('vslot', 0)
+ 'hotplug_slot': pci_dev.get('vslot',
+ '0x' + AUTO_PHP_SLOT_STR)
}
dpci_opts = pci_dev.get('opts')
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [patch 3/9] xm: xen-api, pass-through: Dont pass empty opts, (continued)
- [Xen-devel] [patch 3/9] xm: xen-api, pass-through: Dont pass empty opts, Simon Horman
- [Xen-devel] [patch 4/9] xend: pass-through: prefix vslot with 0x in device configration, Simon Horman
- [Xen-devel] [patch 5/9] xm, xend: xen-api: DPCI.get_hotplug_slot() returns a decimal, Simon Horman
- [Xen-devel] [patch 6/9] xend: xen-api, pass-through: Add create_dpci_from_sxp(), Simon Horman
- [Xen-devel] [patch 7/9] xm: xen-api, pass-through: create: Use vslot for hotplug_slot, Simon Horman
- [Xen-devel] [patch 8/9] xend: pass-through: Use AUTO_PHP_SLOT as unknown vslot, Simon Horman
- [Xen-devel] [patch 9/9] xm: pass-through: sort the output of xm pci-list, Simon Horman
|
|
|