Re: [RFC] kref, a tiny, sane, reference count object

From: Andrew Morton
Date: Sat Mar 13 2004 - 19:36:34 EST


Greg KH <greg@xxxxxxxxx> wrote:
>
> For all of those people, this patch is for you.

It does rather neatly capture a common idiom.

> +struct kref * kref_get(struct kref *kref)
> +{
> + if (kref) {
> + WARN_ON(!atomic_read(&kref->refcount));
> + atomic_inc(&kref->refcount);
> + }
> + return kref;
> +}

Why is a NULL arg permitted here?

> +void kref_cleanup(struct kref *kref)
> +{
> + if (!kref)
> + return;

and here?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/