]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
slub: Fix a typo in config name
authorLi Zefan <lizf@cn.fujitsu.com>
Tue, 12 Apr 2011 07:22:26 +0000 (15:22 +0800)
committerPekka Enberg <penberg@kernel.org>
Tue, 12 Apr 2011 19:27:27 +0000 (22:27 +0300)
There's no config named SLAB_DEBUG, and it should be a typo
of SLUB_DEBUG.

Acked-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
mm/slub.c

index f881874843a5ff67a3d1cef595c35bf72a3c3565..129f10cdfc59de79c905c19748c39275b976c3ca 100644 (file)
--- 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