+ """
+ 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
+
+ Bail if /etc/invirt/nocreate exists
+ """
+ try:
+ os.stat('/etc/invirt/nocreate')
+ print 0
+ return 0
+ except OSError:
+ pass
+