|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [patch 07/17] xend: pass-through: Remove PciDeviceNotFoundEr
Cc: Dexuan Cui <dexuan.cui@xxxxxxxxx>
Cc: Masaki Kanno <kanno.masaki@xxxxxxxxxxxxxx>
Signed-off-by: Simon Horman <horms@xxxxxxxxxxxx>
Index: xen-unstable.hg/tools/python/xen/util/pci.py
===================================================================
--- xen-unstable.hg.orig/tools/python/xen/util/pci.py 2009-06-15
11:24:25.000000000 +1000
+++ xen-unstable.hg/tools/python/xen/util/pci.py 2009-06-15
11:24:25.000000000 +1000
@@ -375,17 +375,6 @@ def check_mmio_bar(devs_list):
return result
-class PciDeviceNotFoundError(Exception):
- def __init__(self,domain,bus,slot,func):
- self.domain = domain
- self.bus = bus
- self.slot = slot
- self.func = func
- self.name = PCI_DEV_FORMAT_STR %(domain, bus, slot, func)
-
- def __str__(self):
- return ('PCI Device %s Not Found' % (self.name))
-
class PciDeviceParseError(Exception):
def __init__(self,msg):
self.message = msg
--
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [patch 00/17] xend: pass-through: various clean-ups and infrastructure: take iii, Simon Horman
- [Xen-devel] [patch 01/17] xend: Support older pciutils without -vmm option, Simon Horman
- [Xen-devel] [patch 02/17] xend: pass-through: Only call setupOneDevice() once per device, Simon Horman
- [Xen-devel] [patch 03/17] xend: pass-through: fix typo: spx -> sxp, Simon Horman
- [Xen-devel] [patch 04/17] xend: pass-through: tidy up PciController(), Simon Horman
- [Xen-devel] [patch 05/17] xend: pass-through: cleanupDevice: move and remove recently added vslot entry, Simon Horman
- [Xen-devel] [patch 06/17] xend: pass-through: sxp.merge() cant deal with values being a list, Simon Horman
- [Xen-devel] [patch 07/17] xend: pass-through: Remove PciDeviceNotFoundError, it is never used,
Simon Horman <=
- [Xen-devel] [patch 08/17] xend: pass-through: Use PCIDevice as the parameter for the constructor for PCIQuirk, Simon Horman
- [Xen-devel] [patch 09/17] xend: pass-through: Common parse_pci_name(), Simon Horman
- [Xen-devel] [patch 10/17] xend: pass-through: Use common parsing code in preprocess_pci(), Simon Horman
- [Xen-devel] [patch 11/17] xend: pass-through: Add pci_dict_cmp(), Simon Horman
- [Xen-devel] [patch 12/17] xend: pass-through: Move pci conversion functions to pci.py, Simon Horman
- [Xen-devel] [patch 13/17] xend: pass-through: Use generic code in pci_opts_list_to_sxp(), Simon Horman
- [Xen-devel] [patch 14/17] xend: pass-through: Add pci_tuple_to_dict(), Simon Horman
- [Xen-devel] [patch 15/17] xend: pass-through: Use common parsing code in parse_pci_configuration(), Simon Horman
- [Xen-devel] [patch 16/17] xend: pass-through: Use common parsing code in getDeviceConfiguration(), Simon Horman
- [Xen-devel] [patch 17/17] xend: pass-through: Clean up hvm_destroyPCIDevice(), Simon Horman
|
|
|
|
|