Tom Lendacky
2005-Oct-10 17:50 UTC
[Xen-devel] [PATCH][RESEND] Fix "Invalid Parameter" during xm create
Forgot the signed-off-by... This patch fixes an error in the xm create path when the xc.domain_create call fails (eg, when ACM policy prevents creation of a domain). When xc.domain_create fails, dompath never gets set. Signed-off-by: Tom Lendacky <toml@us.ibm.com> diff -r 03d69dbea152 tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Mon Oct 10 15:57:41 2005 +++ b/tools/python/xen/xend/XendDomainInfo.py Mon Oct 10 11:14:42 2005 @@ -1087,7 +1087,8 @@ log.debug("XendDomainInfo.destroy: domid=%s", self.domid) self.cleanupVm() - self.destroyDomain() + if self.dompath is not None: + self.destroyDomain() def destroyDomain(self): Thanks, Tom Lendacky _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Ewan Mellor
2005-Oct-10 18:06 UTC
Re: [Xen-devel] [PATCH][RESEND] Fix "Invalid Parameter" during xm create
On Mon, Oct 10, 2005 at 12:50:03PM -0500, Tom Lendacky wrote:> Forgot the signed-off-by... > > This patch fixes an error in the xm create path when the > xc.domain_create call fails (eg, when ACM policy prevents creation of a > domain). When xc.domain_create fails, dompath never gets set. > > Signed-off-by: Tom Lendacky <toml@us.ibm.com>Applied, thanks! Ewan. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel