The patch titled slob: do not pass the SLAB flags as GFP in kmem_cache_create() has been removed from the -mm tree. Its filename was slob-do-not-pass-the-slab-flags-as-gfp-in-kmem_cache_create.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: slob: do not pass the SLAB flags as GFP in kmem_cache_create() From: Catalin Marinas <catalin.marinas@xxxxxxx> The kmem_cache_create() function in the slob allocator passes the SLAB flags as GFP flags to the slob_alloc() function. The patch changes this call to pass GFP_KERNEL as the other allocators seem to do. Signed-off-by: Catalin Marinas <catalin.marinas@xxxxxxx> Acked-by: Matt Mackall <mpm@xxxxxxxxxxx> Cc: Cyrill Gorcunov <gorcunov@xxxxxxxxx> Cc: Christoph Lameter <cl@xxxxxxxxxxxxxxxxxxxx> Cc: Pekka Enberg <penberg@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/slob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/slob.c~slob-do-not-pass-the-slab-flags-as-gfp-in-kmem_cache_create mm/slob.c --- a/mm/slob.c~slob-do-not-pass-the-slab-flags-as-gfp-in-kmem_cache_create +++ a/mm/slob.c @@ -535,7 +535,7 @@ struct kmem_cache *kmem_cache_create(con struct kmem_cache *c; c = slob_alloc(sizeof(struct kmem_cache), - flags, ARCH_KMALLOC_MINALIGN, -1); + GFP_KERNEL, ARCH_KMALLOC_MINALIGN, -1); if (c) { c->name = name; _ Patches currently in -mm which might be from catalin.marinas@xxxxxxx are origin.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html