Re: [PATCH 001 of 14] knfsd: Change the store of auth_domains tonot be a 'cache'.

From: Paul Dickson
Date: Thu Mar 09 2006 - 11:24:15 EST


On Thu, 9 Mar 2006 17:51:27 +1100, NeilBrown wrote:

> struct auth_domain *unix_domain_find(char *name)
> {
> - [code deletions removed]
> + struct auth_domain *rv;
> + struct unix_domain *new = NULL;
>
> - [code deletions removed]
> + rv = auth_domain_lookup(name, NULL);
> + while(1) {
> + if (rv != &new->h) {
> + if (new) auth_domain_put(&new->h);
> + return rv;
> + }

> + new = kmalloc(sizeof(*new), GFP_KERNEL);
> + if (new == NULL)
> + return NULL;

My C skills are a bit rusty, but is seems the value of new is offsetted
while still NULL. I could not find any further updates in the patch
series.

-Paul

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