From: Li Zefan Date: Tue, 12 Apr 2011 07:22:26 +0000 (+0800) Subject: slub: Fix a typo in config name X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=607bf324ab3d780e1ec20b1b1a3bfaa3be58a957;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git slub: Fix a typo in config name There's no config named SLAB_DEBUG, and it should be a typo of SLUB_DEBUG. Acked-by: Christoph Lameter Signed-off-by: Li Zefan Signed-off-by: Pekka Enberg --- diff --git a/mm/slub.c b/mm/slub.c index f881874843a..129f10cdfc5 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -3203,7 +3203,7 @@ static void __init kmem_cache_bootstrap_fixup(struct kmem_cache *s) list_for_each_entry(p, &n->partial, lru) p->slab = s; -#ifdef CONFIG_SLAB_DEBUG +#ifdef CONFIG_SLUB_DEBUG list_for_each_entry(p, &n->full, lru) p->slab = s; #endif