]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/patches/xen-co_assignment.patch
Fix core38 updater replace openvpn config.
[people/pmueller/ipfire-2.x.git] / src / patches / xen-co_assignment.patch
1 diff -r 6ab55f716ce3 tools/python/xen/util/pci.py
2 --- a/tools/python/xen/util/pci.py Thu Oct 09 17:18:11 2008 +0100
3 +++ b/tools/python/xen/util/pci.py Fri Oct 10 13:16:00 2008 +0800
4 @@ -696,6 +696,7 @@ class PciDevice:
5 def do_FLR(self):
6 """ Perform FLR (Functional Level Reset) for the device.
7 """
8 + return
9 if self.dev_type == DEV_TYPE_PCIe_ENDPOINT:
10 # If PCIe device supports FLR, we use it.
11 if self.pcie_flr:
12 diff -r 6ab55f716ce3 tools/python/xen/xend/server/pciif.py
13 --- a/tools/python/xen/xend/server/pciif.py Thu Oct 09 17:18:11 2008 +0100
14 +++ b/tools/python/xen/xend/server/pciif.py Fri Oct 10 13:18:25 2008 +0800
15 @@ -375,6 +375,7 @@ class PciController(DevController):
16 pci_dev_list = pci_dev_list + [(domain, bus, slot, func)]
17
18 for (domain, bus, slot, func) in pci_dev_list:
19 + continue
20 try:
21 dev = PciDevice(domain, bus, slot, func)
22 except Exception, e: