Re: [PATCH] Fix mm regression bug: nommu use compound page in slab allocator

From: Pekka Enberg
Date: Sat Apr 08 2006 - 12:56:34 EST


Hi Luke,

On 3/31/06, Luke Yang <luke.adi@xxxxxxxxx> wrote:
> The earlier patch to consolidate mmu and nommu page allocation
> and refcounting by using compound pages for nommu allocations
> had a bug: kmalloc slabs who's pages were initially allocated
> by a non-__GFP_COMP allocator could be passed into mm/nommu.c
> kmalloc allocations which really wanted __GFP_COMP underlying
> pages. Fix that by having nommu pass __GFP_COMP to all higher order
> slab allocations.

Any reason we are not doing this for CONFIG_MMU as well? We could then
fix the slab callers to not pass __GFP_COMP at all which seems broken
anyway.

Pekka

> Signed-off-by: Luke Yang <luke.adi@xxxxxxxxx>
> Acked-by: Nick Piggin <npiggin@xxxxxxx>
>
> slab.c | 4 ++++
> 1 files changed, 4 insertions(+)
>
> diff --git a/mm/slab.c b/mm/slab.c
> index 4cbf8bb..388a6a9 100644
> --- a/mm/slab.c
> +++ b/mm/slab.c
> @@ -1454,7 +1454,11 @@ static void *kmem_getpages(struct kmem_c
> int i;
>
> flags |= cachep->gfpflags;
> +#ifdef CONFIG_MMU
> page = alloc_pages_node(nodeid, flags, cachep->gfporder);
> +#else
> + page = alloc_pages_node(nodeid, (flags | __GFP_COMP), cachep->gfporder);
> +#endif
> if (!page)
> return NULL;
> addr = page_address(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/