Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mm, slab: correct config option in comment

CONFIG_SLAB_DEBUG doesn't exist, CONFIG_DEBUG_SLAB does.

Signed-off-by: David Rientjes <rientjes@google.com>
Cc: Christoph Lameter <cl@linux.com>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

David Rientjes and committed by
Linus Torvalds
124dee09 08303a73

+1 -1
+1 -1
include/linux/slab.h
··· 18 18 19 19 /* 20 20 * Flags to pass to kmem_cache_create(). 21 - * The ones marked DEBUG are only valid if CONFIG_SLAB_DEBUG is set. 21 + * The ones marked DEBUG are only valid if CONFIG_DEBUG_SLAB is set. 22 22 */ 23 23 #define SLAB_DEBUG_FREE 0x00000100UL /* DEBUG: Perform (expensive) checks on free */ 24 24 #define SLAB_RED_ZONE 0x00000400UL /* DEBUG: Red zone objs in a cache */