again check for virtio disks (not used now but it doesn't hurt to have them here)
authorBarış Metin <Talip-Baris.Metin@sophia.inria.fr>
Fri, 14 Jan 2011 14:37:07 +0000 (15:37 +0100)
committerS.Çağlar Onur <caglar@verivue.com>
Tue, 8 Mar 2011 22:45:00 +0000 (17:45 -0500)
source/systeminfo.py

index 94d9f78..78fc2b6 100755 (executable)
@@ -117,7 +117,8 @@ def get_block_device_list(vars = {}, log = sys.stderr):
     # table with valid scsi/sata/ide/raid block device names
     valid_blk_names = {}
     # add in valid sd and hd block device names
-    for blk_prefix in ('sd','hd'):
+    # also check for vd (virtio devices used with kvm)
+    for blk_prefix in ('sd','hd','vd'):
         for blk_num in map ( \
             lambda x: chr(x), range(ord('a'),ord('z')+1)):
             devicename="%s%c" % (blk_prefix, blk_num)