[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] Fix xm mem-max command to restore previous setting if xc.domain_setmaxmem fails.
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1204038146 0 # Node ID 450be98ef36b1af40ab381d8e0aac647012a60a2 # Parent 6ef22eefc36056daa4f7e6c6f14873ea72658161 Fix xm mem-max command to restore previous setting if xc.domain_setmaxmem fails. Signed-off-by: Masaki Kanno <kanno.masaki@xxxxxxxxxxxxxx> --- tools/python/xen/xend/XendDomainInfo.py | 2 ++ 1 files changed, 2 insertions(+) diff -r 6ef22eefc360 -r 450be98ef36b tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Tue Feb 26 15:00:08 2008 +0000 +++ b/tools/python/xen/xend/XendDomainInfo.py Tue Feb 26 15:02:26 2008 +0000 @@ -906,6 +906,7 @@ class XendDomainInfo: log.debug("Setting memory maximum of domain %s (%s) to %d MiB.", self.info['name_label'], str(self.domid), limit) + maxmem_cur = self.get_memory_static_max() MiB = 1024 * 1024 self._safe_set_memory('memory_static_max', limit * MiB) @@ -914,6 +915,7 @@ class XendDomainInfo: try: return xc.domain_setmaxmem(self.domid, maxmem) except Exception, ex: + self._safe_set_memory('memory_static_max', maxmem_cur) raise XendError(str(ex)) xen.xend.XendDomain.instance().managed_config_save(self) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |