unallocated memory
This works around the case where dom0's RAM doesn't get ballooned down
svn path=/trunk/packages/invirt-remote-server/; revision=1650
+invirt-remote-server (0.0.17) unstable; urgency=low
+
+ * Get the host with the most RAM based on the maximum recoverable
+ memory, not the memory currently available to Xen
+
+ -- Evan Broder <broder@mit.edu> Sat, 15 Nov 2008 10:30:10 -0500
+
invirt-remote-server (0.0.16) unstable; urgency=low
* When returning from a bcast, put together the stdout, not the stderr
# Query each of the hosts.
# XXX will the output of 'xm info' always be parseable YAML?
results = bcast('info')
- return max((int(o['free_memory']), s) for (s, o) in results)[1]
+ return max((int(o['max_free_memory']), s) for (s, o) in results)[1]
def main(argv):
if len(argv) < 3: