qemu-block
[Top][All Lists]
Advanced

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

Re: [Qemu-block] [PATCH 14/42] job: Add reference counting


From: Eric Blake
Subject: Re: [Qemu-block] [PATCH 14/42] job: Add reference counting
Date: Wed, 16 May 2018 16:25:55 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0

On 05/16/2018 03:56 PM, Kevin Wolf wrote:

+
+void job_unref(Job *job)
+{
+    if (--job->refcnt == 0) {

Should this be free()-like and allow an incoming job == NULL as a no-op?

This behaves like block_job_unref() always behavec, and I don't see a
single caller having a NULL check before calling job_unref(), so is it
worth it?

Only if it makes it easier to clean up a partially-constructed object (which is the most likely case of wanting to pass in NULL)

--
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org



reply via email to

[Prev in Thread] Current Thread [Next in Thread]