[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 6 of 7] xend: call pci_device_configure on the stubdom
Whenever pci_device_configure is called on a guest that has a stubdom, call pci_device_configure on the stubdom as well. Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> --- diff -r 7dfb1cb1050e tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Mon Oct 12 16:03:49 2009 +0100 +++ b/tools/python/xen/xend/XendDomainInfo.py Mon Oct 12 17:43:43 2009 +0100 @@ -855,6 +855,13 @@ dev_config = pci_convert_sxp_to_dict(dev_sxp) dev = dev_config['devs'][0] + dom_list = xstransact.List('/local/domain') + for d in dom_list: + target = xstransact.Read('/local/domain/' + d + '/target') + if target is not None and int(target) is self.domid : + from xen.xend import XendDomain + XendDomain.instance().domain_lookup(int(d)).pci_device_configure(dev_sxp[:]) + # Do HVM specific processing if self.info.is_hvm(): if pci_state == 'Initialising': _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |