search for: xendomaininfo

Displaying 3 results from an estimated 3 matches for "xendomaininfo".

Did you mean: xenddomaininfo
2007 May 14
1
XenDomainInfo.py: Can hang in _releaseDevices.
A section of code does: while True: t = xstransact("%s/device" % self.dompath) for devclass in XendDevices.valid_devices(): for dev in t.list(devclass): try: t.remove(dev) except: # Log and swallow any exceptions in removal --
2006 Jan 16
0
Re: [PATCH 1/3] domUloader
Hi, On Mon, Jan 16, 2006 at 11:26:09PM +0000, Kurt Garloff wrote: > (1) A patch to xend/XenDomainInfo.py, xend/XenBootloader.py and > xm/create.py, making sure that all the needed info is passed > to the bootloader and also stored for reuse on rebooting. Some more remarks: XendBootloader.py misses a timeout and waits for the bootloader to finish forever; I just made a TODO. One of...
2010 Oct 24
1
Bug#601271: xen-utils-4.0: domain fails to reboot (AttributeError: 'NoneType' object has no attribute 'getBitSize')
.../lib/python/xen/xend/balloon.py", line 112, in free guest_size = dominfo.image.getBitSize() AttributeError: 'NoneType' object has no attribute 'getBitSize' I'm under the impression that the problem is that on reboot, domid is still set while the .image component of the XenDomainInfo object has been reset. On create, on the other hand, domid isn't set until a later stage so the condition at line 107 of balloon.py evaluates to false and the getBitSize() method call is not attempted. I don't consider myself sufficiently familiar with the code to suggest a solution.