On 03/23/2011 06:19 AM, Daniel P. Berrange wrote:
> On Tue, Mar 22, 2011 at 04:45:09PM -0600, Eric Blake wrote:
>> Sometimes, an asynchronous helper is started (such as a compressor
>> or iohelper program), but a later error means that we want to
>> abort that child.  Make this easier.
>>
>>  /*
>> @@ -1207,6 +1208,8 @@ virCommandRunAsync(virCommandPtr cmd, pid_t *pid)
>>
>>      if (ret == 0 && pid)
>>          *pid = cmd->pid;
>> +    else
>> +        cmd->reap = true;
>>
>>      return ret;
>>  }
> 
> [snip]
> 
>> @@ -1305,5 +1368,8 @@ virCommandFree(virCommandPtr cmd)
>>
>>      VIR_FREE(cmd->pidfile);
>>
>> +    if (cmd->reap)
>> +        virCommandAbort(cmd);
>> +
>>      VIR_FREE(cmd);
>>  }
> 
> We allow  virCommandRunAsync to be used for daemonized
> commands, so I don't think it is safe to unconditionally
> kill off the PID when free'ing the virCommandPtr instance.

No, we don't.  'git grep virCommandRunAsync' shows that the only current
client is virsh.c.  virCommandDaemonize is run synchronously (the daemon
grandchild is run async, but the intermediate child runs to completion
via virCommandRun).

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

Attachment: signature.asc
Description: OpenPGP digital signature

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Reply via email to