X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-remote.git/blobdiff_plain/7339891c2377d09611ba01b2f2496ae3aa151329..a596ad725e93c4848640666dca7a2a8d2dcd65ee:/host/usr/sbin/invirt-availability?ds=sidebyside diff --git a/host/usr/sbin/invirt-availability b/host/usr/sbin/invirt-availability index 93ef381..70306dd 100644 --- a/host/usr/sbin/invirt-availability +++ b/host/usr/sbin/invirt-availability @@ -6,20 +6,25 @@ Gathers availability data for the VM host it's running on. from subprocess import PIPE, Popen, call import sys import yaml - -# return the amount of memory in kilobytes represented by s -def parseUnits(s): - num, unit = s.split(' ') - return int(num) * {'kb':1, 'mb':1024}[unit.lower()] +import os def main(argv): """ Calculate the amount of memory available for new VMs - The numbers returned by xm info and xm info -c are in MB - The numbers in /proc/xen/balloon have nice units - All math is done in kilobytes for consistency - Output is in MB + The numbers returned by xm info and xm info -c are in MiB + The numbers in /proc/xen/balloon are in KiB + All math is done in kibibytes for consistency + Output is in MiB + + Bail if /etc/invirt/nocreate exists """ + try: + os.stat('/etc/invirt/nocreate') + print 0 + return 0 + except OSError: + pass + p = Popen(['/usr/sbin/xm', 'info'], stdout=PIPE) output = p.communicate()[0] if p.returncode != 0: @@ -29,10 +34,10 @@ def main(argv): free_memory = int(xminfo['free_memory']) * 1024 - ballooninfo = yaml.load(open('/proc/xen/balloon', 'r').read()) - currentallocation = parseUnits(ballooninfo['Current allocation']) - minimumtarget = parseUnits(ballooninfo['Minimum target']) - + currentallocation = int(open('/sys/devices/system/xen_memory/xen_memory0/info/current_kb', 'r').read()) +# this information seems to have vanished in recent linux - we _want_ min_target_kb, but it doesn't seem to be +# exposed anymore. +# minimumtarget = int(open('/sys/devices/system/xen_memory/xen_memory0/target_kb', 'r').read()) p = Popen(['/usr/sbin/xm', 'info', '-c'], stdout=PIPE) output = p.communicate()[0] if p.returncode != 0: @@ -40,10 +45,11 @@ def main(argv): % ('/usr/sbin/xm info -c', p.returncode)) xminfoc = yaml.load(output, yaml.CSafeLoader) - # In kilobytes + # In kibibytes dom0minmem = int(xminfoc['dom0-min-mem']) * 1024 - dom0_spare_memory = currentallocation - max(minimumtarget, dom0minmem) +# dom0_spare_memory = currentallocation - max(minimumtarget, dom0minmem) + dom0_spare_memory = currentallocation - dom0minmem print int((free_memory + dom0_spare_memory)/1024) return 0