[libvirt] [PATCH 2/2] test: Update inactive guest config on shutdown

Cole Robinson crobinso at redhat.com
Thu Nov 5 18:22:41 UTC 2009


On 11/05/2009 04:45 AM, Daniel Veillard wrote:
> On Wed, Nov 04, 2009 at 02:39:43PM -0500, Cole Robinson wrote:
>> This matches the expected behavior of state drivers such as QEMU.
>>
>> Signed-off-by: Cole Robinson <crobinso at redhat.com>
>> ---
>>  src/test/test_driver.c |    6 ++++++
>>  1 files changed, 6 insertions(+), 0 deletions(-)
>>
>> diff --git a/src/test/test_driver.c b/src/test/test_driver.c
>> index 35299d5..343834c 100644
>> --- a/src/test/test_driver.c
>> +++ b/src/test/test_driver.c
>> @@ -473,6 +473,12 @@ static void
>>  testDomainShutdownState(virDomainPtr domain,
>>                          virDomainObjPtr privdom)
>>  {
>> +    if (privdom->newDef) {
>> +        virDomainDefFree(privdom->def);
>> +        privdom->def = privdom->newDef;
>> +        privdom->newDef = NULL;
>> +    }
>> +
>>      privdom->state = VIR_DOMAIN_SHUTOFF;
>>      privdom->def->id = -1;
>>      domain->id = -1;
> 
>   ACK,
> 
> Daniel
> 

Thanks, pushed these 2 patches now.

- Cole




More information about the libvir-list mailing list