[libvirt] [PATCH] Simplify some redundant locking while unref'ing objects

Eric Blake eblake at redhat.com
Tue Sep 25 23:49:39 UTC 2012


On 09/25/2012 02:29 PM, Daniel P. Berrange wrote:
> From: "Daniel P. Berrange" <berrange at redhat.com>
> 
> There is no need to hold the mutex when unref'ing
> virObject instances
> 
> Signed-off-by: Daniel P. Berrange <berrange at redhat.com>
> ---
>  src/conf/domain_conf.c | 4 +---
>  src/qemu/qemu_driver.c | 4 ++--
>  src/rpc/virnetserver.c | 3 ---
>  3 files changed, 3 insertions(+), 8 deletions(-)

ACK.

> 
> diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
> index 4aa08d0..0514540 100644
> --- a/src/conf/domain_conf.c
> +++ b/src/conf/domain_conf.c
> @@ -741,9 +741,7 @@ static void
>  virDomainObjListDataFree(void *payload, const void *name ATTRIBUTE_UNUSED)
>  {
>      virDomainObjPtr obj = payload;
> -    virDomainObjLock(obj);
> -    if (virObjectUnref(obj))
> -        virDomainObjUnlock(obj);
> +    virObjectUnref(obj);
>  }

We now have several of these one-liner cleanup functions.  Is it worth
making a common hash wrapper function that calls virObjectUnref on the
object, rather than having to reinvent lots of one-liners, as a followup
patch?

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

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 617 bytes
Desc: OpenPGP digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20120925/8a4e2758/attachment-0001.sig>


More information about the libvir-list mailing list