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

Matthias Bolte matthias.bolte at googlemail.com
Fri Jul 30 16:11:17 UTC 2010


2010/7/30 Eric Blake <eblake at redhat.com>:
> On 07/30/2010 09:24 AM, Matthias Bolte wrote:
>> ---
>>  src/xenapi/xenapi_driver.c |    5 +++++
>>  1 files changed, 5 insertions(+), 0 deletions(-)
>>
>> diff --git a/src/xenapi/xenapi_driver.c b/src/xenapi/xenapi_driver.c
>> index e385648..2262cef 100644
>> --- a/src/xenapi/xenapi_driver.c
>> +++ b/src/xenapi/xenapi_driver.c
>> @@ -1459,6 +1459,7 @@ xenapiDomainCreateWithFlags (virDomainPtr dom, unsigned int flags)
>>      xen_vm_set *vms;
>>      xen_vm vm;
>>      xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
>> +    int64_t domid = -1;
>>
>>      virCheckFlags(0, -1);
>>
>> @@ -1475,6 +1476,10 @@ xenapiDomainCreateWithFlags (virDomainPtr dom, unsigned int flags)
>>              xen_vm_set_free(vms);
>>              return -1;
>>          }
>> +
>> +        xen_vm_get_domid(session, &domid, vm);
>> +        dom->id = domid;
>> +
>
> ACK.
>

Thanks, pushed.

Matthias




More information about the libvir-list mailing list