Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 607bf324 authored by Li Zefan's avatar Li Zefan Committed by Pekka Enberg
Browse files

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: default avatarChristoph Lameter <cl@linux.com>
Signed-off-by: default avatarLi Zefan <lizf@cn.fujitsu.com>
Signed-off-by: default avatarPekka Enberg <penberg@kernel.org>
parent 0ce790e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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