xend: Use parse_hex() in XendPPCI.py
authorKeir Fraser <keir.fraser@citrix.com>
Thu, 12 Mar 2009 11:33:35 +0000 (11:33 +0000)
committerKeir Fraser <keir.fraser@citrix.com>
Thu, 12 Mar 2009 11:33:35 +0000 (11:33 +0000)
Signed-off-by: Yosuke Iwamatsu <y-iwamatsu@ab.jp.nec.com>
tools/python/xen/xend/XendPPCI.py

index 9ea61218d9fe2ec3549f84f5fba176831fed7ca3..e6248b714a9c641ee2b036105a1a59b76825b00a 100644 (file)
@@ -20,6 +20,8 @@ from xen.xend.XendBase import XendBase
 from xen.xend.XendBase import XendAPIStore
 from xen.xend import uuid as genuuid
 
+from xen.util.pci import parse_hex
+
 class XendPPCI(XendBase):
     """Representation of a physical PCI device."""
 
@@ -72,10 +74,10 @@ class XendPPCI(XendBase):
  
     def get_by_sbdf(self, domain, bus, slot, func):
         for ppci in XendAPIStore.get_all("PPCI"):
-            if ppci.get_domain() == int(domain, 16) and \
-               ppci.get_bus() == int(bus, 16) and \
-               ppci.get_slot() == int(slot, 16) and \
-               ppci.get_func() == int(func, 16):
+            if ppci.get_domain() == parse_hex(domain) and \
+               ppci.get_bus() == parse_hex(bus) and \
+               ppci.get_slot() == parse_hex(slot) and \
+               ppci.get_func() == parse_hex(func):
                 return ppci.get_uuid()
         return None