Re: [PATCH 2/4] integrity: Linux Integrity Module(LIM)

From: Dave Hansen
Date: Fri Nov 21 2008 - 12:48:34 EST


On Thu, 2008-11-20 at 11:43 -0500, Mimi Zohar wrote:
>
> +static inline void tget(struct template_list_entry *entry)
> +{
> + atomic_inc(&entry->refcount);
> +}
> +
> +static inline void tput(struct template_list_entry *entry)
> +{
> + if (atomic_dec_and_test(&entry->refcount))
> + kfree(entry);
> +}

Seems like a good place for a kref.

-- Dave

--
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/