예제 #1
0
파일: fileSD.py 프로젝트: hackxay/vdsm
 def getReadDelay(self):
     stats = misc.readspeed(self.metafile, 4096)
     return stats['seconds']
예제 #2
0
파일: blockSD.py 프로젝트: oVirtorg/vdsm
 def getReadDelay(self):
     stats = misc.readspeed(lvm.lvPath(self.sdUUID, sd.METADATA), 4096)
     return stats['seconds']
예제 #3
0
파일: blockSD.py 프로젝트: humblec/vdsm
 def getReadDelay(self):
     stats = misc.readspeed(lvm.lvPath(self.sdUUID, sd.METADATA), 4096)
     return stats['seconds']
예제 #4
0
 def getReadDelay(self):
     stats = misc.readspeed(self.metafile, 4096)
     return stats['seconds']