]> xenbits.xensource.com Git - xen.git/commitdiff
Accept decimal block device IDs
authorKeir Fraser <keir.fraser@citrix.com>
Thu, 1 May 2008 15:35:28 +0000 (16:35 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Thu, 1 May 2008 15:35:28 +0000 (16:35 +0100)
Solaris uses a simple indexing scheme for block devices. Parts of xend
translate them as hexadecimal (such as block-attach), and decimal, or
unconverted, elsewhere (such as block-detach). Harmonise these
interfaces by allowing decimal specifications.

Also allow Solaris-style block device names.

Signed-off-by: John Levon <john.levon@sun.com>
tools/python/xen/util/blkif.py

index 15d20dde8c103d3059f2dec48f15ad15baa70e2e..0fdd52f4184850a014f9021d7ac11a9beb7a3380 100644 (file)
@@ -42,10 +42,12 @@ def blkdev_name_to_number(name):
     if re.match( '/dev/xvd[a-p]([1-9]|1[0-5])?', n):
         return 202 * 256 + 16 * (ord(n[8:9]) - ord('a')) + int(n[9:] or 0)
 
-    # see if this is a hex device number
-    if re.match( '^(0x)?[0-9a-fA-F]+$', name ):
+    if re.match( '^(0x)[0-9a-fA-F]+$', name ):
         return string.atoi(name,16)
-        
+
+    if re.match('^[0-9]+$', name):
+        return string.atoi(name, 10)
+
     return None
 
 def blkdev_segment(name):