Re: [PATCH 11/12: eCryptfs] Keystore

From: Timothy R. Chavez
Date: Fri Nov 04 2005 - 12:47:46 EST


On Wednesday 02 November 2005 21:56, Phillip Hellewell wrote:
> +static void wipe_auth_tok_list(struct list_head *auth_tok_list_head)
> +{
> + struct list_head *walker;
> + ecryptfs_printk(1, KERN_NOTICE, "Enter\n");
> + walker = auth_tok_list_head->next;
> + while (walker != auth_tok_list_head) {
> + struct ecryptfs_auth_tok_list_item *auth_tok_list_item;
> + auth_tok_list_item =
> + list_entry(walker, struct ecryptfs_auth_tok_list_item,
> + list);
> + walker = auth_tok_list_item->list.next;
> + ecryptfs_kmem_cache_free(ecryptfs_auth_tok_list_item_cache,
> + auth_tok_list_item);
> + }

list_for_each_entry_safe ??

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