Home
last modified time | relevance | path

Searched refs:SLAB_RED_ZONE (Results 1 – 6 of 6) sorted by relevance

/linux-4.4.14/mm/
Dslab.h121 #define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
123 #define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
Dslab.c362 BUG_ON(!(cachep->flags & SLAB_RED_ZONE)); in dbg_redzone1()
369 BUG_ON(!(cachep->flags & SLAB_RED_ZONE)); in dbg_redzone2()
1756 if (cachep->flags & SLAB_RED_ZONE) { in print_objinfo()
1860 if (cachep->flags & SLAB_RED_ZONE) { in slab_destroy_debugcheck()
2118 flags |= SLAB_RED_ZONE | SLAB_STORE_USER; in __kmem_cache_create()
2136 if (flags & SLAB_RED_ZONE) { in __kmem_cache_create()
2150 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER); in __kmem_cache_create()
2167 if (flags & SLAB_RED_ZONE) { in __kmem_cache_create()
2177 if (flags & SLAB_RED_ZONE) in __kmem_cache_create()
2247 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER); in __kmem_cache_create()
[all …]
Dslub.c163 #define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
171 #define DEBUG_METADATA_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
294 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON)) in slab_ksize()
636 if (s->flags & SLAB_RED_ZONE) in print_trailer()
685 if (s->flags & SLAB_RED_ZONE) in init_object()
819 if (s->flags & SLAB_RED_ZONE) { in check_object()
1025 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON))) in setup_object_debug()
1176 slub_debug |= SLAB_RED_ZONE; in setup_slub_debug()
3254 if ((flags & SLAB_RED_ZONE) && size == s->object_size) in calculate_sizes()
3286 if (flags & SLAB_RED_ZONE) in calculate_sizes()
[all …]
Dslab_common.c36 #define SLAB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
/linux-4.4.14/include/linux/
Dslab.h24 #define SLAB_RED_ZONE 0x00000400UL /* DEBUG: Red zone objs in a cache */ macro
/linux-4.4.14/Documentation/vm/
Dslub.txt225 (Redzone information is only available if SLAB_RED_ZONE is set.