[libvirt] [PATCH] esx: Update ID after starting a domain

Eric Blake eblake at redhat.com
Fri Jul 30 15:36:34 UTC 2010


On 07/30/2010 09:23 AM, Matthias Bolte wrote:
> ---
>  src/esx/esx_driver.c |    6 ++++--
>  1 files changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/src/esx/esx_driver.c b/src/esx/esx_driver.c
> index eb64556..964a3a5 100644
> --- a/src/esx/esx_driver.c
> +++ b/src/esx/esx_driver.c
> @@ -2483,6 +2483,7 @@ esxDomainCreateWithFlags(virDomainPtr domain, unsigned int flags)
>      esxVI_ObjectContent *virtualMachine = NULL;
>      esxVI_String *propertyNameList = NULL;
>      esxVI_VirtualMachinePowerState powerState;
> +    int id = -1;
>      esxVI_ManagedObjectReference *task = NULL;
>      esxVI_TaskInfoState taskInfoState;
>  
> @@ -2497,8 +2498,8 @@ esxDomainCreateWithFlags(virDomainPtr domain, unsigned int flags)
>          esxVI_LookupVirtualMachineByUuidAndPrepareForTask
>            (priv->primary, domain->uuid, propertyNameList, &virtualMachine,
>             priv->autoAnswer) < 0 ||
> -        esxVI_GetVirtualMachinePowerState(virtualMachine,
> -                                          &powerState) < 0) {
> +        esxVI_GetVirtualMachinePowerState(virtualMachine, &powerState) < 0 ||
> +        esxVI_GetVirtualMachineIdentity(virtualMachine, &id, NULL, NULL) < 0) {

ACK.  This leaves domain->id unchanged on failure, but I think that's
okay, because the caller shouldn't be relying on the contents of domain
on failure.

-- 
Eric Blake   eblake at redhat.com    +1-801-349-2682
Libvirt virtualization library http://libvirt.org

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 619 bytes
Desc: OpenPGP digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20100730/2fc80946/attachment-0001.sig>


More information about the libvir-list mailing list