search for: _recreatedom

Displaying 2 results from an estimated 2 matches for "_recreatedom".

2012 Nov 08
0
Sometimes unable to reboot VM
...ask.log_progress(0, 30, self._constructDomain) File "/usr/lib/python2.6/dist-packages/xen/xend/XendTask.py", line 209, in log_progress retval = func(*args, **kwds) File "/usr/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.py", line 2576, in _constructDomain self._recreateDom() File "/usr/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.py", line 1730, in _recreateDom complete(self.dompath, lambda t: self._recreateDomFunc(t)) File "/usr/lib/python2.6/dist-packages/xen/xend/xenstore/xstransact.py", line 364, in complete if t.commit():...
2008 May 14
3
Bug#481200: xend: Handle unspecified timer_mode domain platform parameter.
...Shell: /bin/sh linked to /bin/bash -------------- next part -------------- --- xen-3-3.2.0.old/tools/python/xen/xend/XendDomainInfo.py 2008-01-18 15:31:10.000000000 -0200 +++ xen-3-3.2.0/tools/python/xen/xend/XendDomainInfo.py 2008-05-14 10:22:15.000000000 -0300 @@ -1650,9 +1650,10 @@ self._recreateDom() # Set timer configration of domain - if hvm: + timer_mode = self.info["platform"].get("timer_mode") + if hvm and timer_mode is not None: xc.hvm_set_param(self.domid, HVM_PARAM_TIMER_MODE, - long(self.info["platfo...