Displaying 5 results from an estimated 5 matches for "readdom".
Did you mean:
readdoc
2011 Mar 03
6
[PATCH] Make explicit message when guest failed to suspend
..._INVALID;
}
diff --git a/tools/python/xen/xend/XendDomainInfo.py
b/tools/python/xen/xend/XendDomainInfo.py
index d5e92be..c652939 100644
--- a/tools/python/xen/xend/XendDomainInfo.py
+++ b/tools/python/xen/xend/XendDomainInfo.py
@@ -1882,7 +1882,7 @@ class XendDomainInfo:
reason = self.readDom(''control/shutdown'')
- if reason and reason != ''suspend'':
+ if reason and reason != ''suspend'' and reason != ''failed'':
sst = self.readDom(''xend/shutdown_start_time'')
now...
2007 Oct 31
3
Error: (9, ''Bad file descriptor'')
...me/xen/xen-3.1-testing.hg/dist/install/usr/lib/python/xen/xend/XendDomainInfo.py",
line 2198, in update
self._update_consoles()
File "/home/xen/xen-3.1-testing.hg/dist/install/usr/lib/python/xen/xend/XendDomainInfo.py",
line 792, in _update_consoles
self.console_port = self.readDom(''console/port'')
File "/home/xen/xen-3.1-testing.hg/dist/install/usr/lib/python/xen/xend/XendDomainInfo.py",
line 845, in readDom
return xstransact.Read(self.dompath, *args)
File "/home/xen/xen-3.1-testing.hg/dist/install/usr/lib/python/xen/xend/xenstore/xstr...
2014 Apr 10
0
Bug#744163: xenstore problems
...pdate(dom, refresh_shutdown, transaction)
File "/usr/lib/xen-4.1/bin/../lib/python/xen/xend/XendDomainInfo.py", line 3543, in update
self.refreshShutdown(info)
File "/usr/lib/xen-4.1/bin/../lib/python/xen/xend/XendDomainInfo.py", line 2069, in refreshShutdown
if self.readDom('xend/shutdown_completed'):
File "/usr/lib/xen-4.1/bin/../lib/python/xen/xend/XendDomainInfo.py", line 1693, in readDom
return xstransact.Read(self.dompath, *args)
File "/usr/lib/xen-4.1/bin/../lib/python/xen/xend/xenstore/xstransact.py", line 307, in Read
re...
2006 Nov 24
0
Error: (12, ''Cannot allocate memory'')
...(most recent call last):
File "/usr/lib/python2.4/site-packages/xen/xend/xenstore/xswatch.py",
line 66,
in watchMain
res = watch.fn(we[0], *watch.args, **watch.kwargs)
File "/usr/lib/python2.4/site-packages/xen/xend/image.py", line 489, in
hvm_sh
utdown
reason = vm.readDom(''control/shutdown'')
AttributeError: ''NoneType'' object has no attribute ''readDom''
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2005 Nov 10
2
[PATCH][RESEND] xm reboot for vmx domain
This patch fixes the bug that "xm reboot <domid>" can not reboot vmx
domain.
In xm reboot process, control panel will wait until DomU notified it.
Unlike DomU, vmx domain can not passively do that, since it runs
unmodified OS. This patch adds the missing logic in control panel.
Any comment?
Signed-off-by: Xu Dan <dan.d.xu@intel.com >
Yu Ke