Re: [PATCH 2/3] Convert the virCgroupKill* APIs to report errors

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 07/19/2013 08:42 AM, Daniel P. Berrange wrote:
> On Thu, Jul 18, 2013 at 09:36:59PM -0600, Eric Blake wrote:
>> On 07/18/2013 09:00 AM, Daniel P. Berrange wrote:
>>> From: "Daniel P. Berrange" <berrange@xxxxxxxxxx>
>>>
>>> Instead of returning errno values, change the virCgroupKill*
>>> APIs to fully report errors.
>>>
>>> Signed-off-by: Daniel P. Berrange <berrange@xxxxxxxxxx>
>>> ---

>>> +        virCgroupKillPainfully(priv->cgroup);
>>
>> ...but now don't report any failure at all.  Is this right?  Shouldn't
>> this be:
>>
>> if (virCgroupKillPainfully(priv->cgroup) < 0)
>>     goto cleanup;
>>
>> or even still distinguish the error message for processes that couldn't
>> be killed (but maybe hoisting it into vircgroup.c)?
> 
> I'll add in
> 
> -        virCgroupKillPainfully(priv->cgroup);
> +        rc = virCgroupKillPainfully(priv->cgroup);
> +        if (rc < 0)
> +            return -1;
> +        if (rc > 0) {
> +            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
> +                           _("Some processes refused to die"));
> +            return -1;
> +        }

Works for me.  ACK as revised.

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature

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

[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]