search for: xendinvaliddomain

Displaying 8 results from an estimated 8 matches for "xendinvaliddomain".

2007 May 04
0
[PATCH] 3/4 "nemesis" scheduling domains for Xen
.... + + @param adom: activation domain ID + @type adom: int or string + @param sdom: scheduling domain ID + @type sdom: int or string + @rtype: 0 + """ + adominfo = self.domain_lookup_nr(adom) + if not adominfo: + raise XendInvalidDomain(str(adom)) + sdominfo = self.domain_lookup_nr(sdom) + if not sdominfo: + raise XendInvalidDomain(str(sdom)) + try: + return xc.add_adom(adom, sdom) + except Exception, ex: + log.exception(ex) + raise XendError(str(ex)) + + d...
2009 Jun 25
0
Error creating vm xen3.4
...ap. [2009-06-25 17:59:42 13862] DEBUG (DevController:139) Waiting for devices vtpm. [2009-06-25 17:59:42 13862] ERROR (XendDomain:1183) domain_unpause Traceback (most recent call last): File "usr/lib/python2.5/site-packages/xen/xend/XendDomain.py", line 1172, in domain_unpause raise XendInvalidDomain(str(domid)) XendInvalidDomain: <Fault 3: ''y''> I try to recompile dom0 kernel but it''s the same. regards.- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2009 Mar 29
5
Problems installing guest domains
...512 -f /vm/test1.img -s 5 > --location=/vm/CentOS-5.2-x86_64-bin-DVD.iso --hvm This comes up and it just hangs here: > Starting install... > Creating storage file... 100% |=========================| 5.0 GB 00:00 > Creating domain... 0 B 00:00 > ▒ My xend-debug.log file says this: XendInvalidDomain: <Fault 3: ''b5e19b10-7540-902c-b585-f8783447521f''> Traceback (most recent call last): File "/usr/lib64/python2.4/site-packages/xen/web/httpserver.py", line 140, in process resource = self.getResource() File "/usr/lib64/python2.4/site-packages/xen/web/httpserv...
2007 Jun 07
0
[PATCH] Remove unimplemented xm migrate --resource option
...@param domid: Domain ID or Name @@ -1203,7 +1203,6 @@ class XendDomain: @type port: int @keyword live: Live migration @type live: bool - @keyword resource: not used?? @rtype: None @raise XendError: Failed to migrate @raise XendInvalidDomain: Domain is not valid diff --git a/tools/python/xen/xend/server/SrvDomain.py b/tools/python/xen/xend/server/SrvDomain.py --- a/tools/python/xen/xend/server/SrvDomain.py +++ b/tools/python/xen/xend/server/SrvDomain.py @@ -115,7 +115,6 @@ class SrvDomain(SrvDir): [['...
2006 Mar 23
1
[PATCH] Fixup a couple of problems with XML-RPC error handling
This fixes a number of problems introduces in the recent XML-RPC check-in. The higher level errors are a great idea and I''ve also extended it a bit to have a slightly nicer interface. Please apply. Regards, Anthony Liguori _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2008 Feb 28
0
[PATCH] Fix error message of xm suspend for Domain-0
...t; Best regards, Kan diff -r 2a8eaba24bf0 tools/python/xen/xend/XendDomain.py --- a/tools/python/xen/xend/XendDomain.py Tue Feb 26 15:11:51 2008 +0000 +++ b/tools/python/xen/xend/XendDomain.py Thu Feb 28 14:23:39 2008 +0900 @@ -865,7 +865,7 @@ class XendDomain: raise XendInvalidDomain(domname) if dominfo.getDomid() == DOM0_ID: - raise XendError("Cannot save privileged domain %s" % domname) + raise XendError("Cannot suspend privileged domain %s" % domname) if dominfo._stateGet() != DOM_STATE_RUNNING:...
2009 Apr 16
9
Second release candidate for Xen 3.4.0
Folks, The second release candidate for Xen 3.4.0 is available at http://xenbits.xensource.com/xen-unstable.hg, tagged as ''3.4.0-rc2''. Please test! -- Keir _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2006 Aug 01
18
[Patch] Enable "sysrq c" handler for domU coredump
Hi, In the case of linux, crash_kexec() is occured by "sysrq c". In the case of DomainU on xen, Help is occured by "sysrq c" now. So The way of dumping DomainU''s memory manualy is nothing. I fix this issue by the following way. 1. Panic is occured by "sysrq c" on both Domain0 and DomainU. 2. On DomainU, coredump is generated in /var/xen/dump (on Domain0).