[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xend: Device configurations of suspended virtual machines are inaccessible
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1210866051 -3600 # Node ID f12724194ec6768baf865dc2d54afe646dbeac79 # Parent e3b13e1ecf6ca61b84c8bdf5ae3e961268c920f5 xend: Device configurations of suspended virtual machines are inaccessible The device configurations of suspended virtual machines are inaccessible even though for example the UUIDs of the VIFs and VBDs are known and returned when VM.get_VIFs()/get_VBDs() is called, though when trying to access their records for example, then handle is reported as being invalid. This patch fixes this. Signed-off-by: Stefan Berger <stefanb@xxxxxxxxxx> --- tools/python/xen/xend/XendDomainInfo.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -r e3b13e1ecf6c -r f12724194ec6 tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Thu May 15 15:10:05 2008 +0100 +++ b/tools/python/xen/xend/XendDomainInfo.py Thu May 15 16:40:51 2008 +0100 @@ -3013,7 +3013,8 @@ class XendDomainInfo: # shortcut if the domain isn't started because # the devcontrollers will have no better information # than XendConfig. - if self._stateGet() in (XEN_API_VM_POWER_STATE_HALTED,): + if self._stateGet() in (XEN_API_VM_POWER_STATE_HALTED, + XEN_API_VM_POWER_STATE_SUSPENDED): if dev_config: return copy.deepcopy(dev_config) return None _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |