Re: [PATCH -mm] slqb: use correct name for rcu callback

From: Nick Piggin
Date: Tue Mar 03 2009 - 09:44:19 EST


Thanks.
Acked-by: Nick Piggin <npiggin@xxxxxxx>

On Tue, Mar 03, 2009 at 09:27:15PM +0800, Lai Jiangshan wrote:
>
> struct slqb_page defines struct rcu_head rcu_head for rcu,
> the rcu callback should use it.
>
> Signed-off-by: Lai Jiangshan <laijs@xxxxxxxxxxxxxx>
> ---
> diff --git a/mm/slqb.c b/mm/slqb.c
> index 07bf5b3..48bdf3b 100644
> --- a/mm/slqb.c
> +++ b/mm/slqb.c
> @@ -1026,7 +1043,7 @@ static void rcu_free_slab(struct rcu_head *h)
> {
> struct slqb_page *page;
>
> - page = container_of((struct list_head *)h, struct slqb_page, lru);
> + page = container_of(h, struct slqb_page, rcu_head);
> __free_slab(page->list->cache, page);
> }
>
>
--
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/