Searched refs:POISON_INUSE (Results 1 – 6 of 6) sorted by relevance
/linux-3.4.99/include/linux/ |
D | poison.h | 47 #define POISON_INUSE 0x5a /* for use-uninitialised poisoning */ macro
|
/linux-3.4.99/kernel/debug/kdb/ |
D | kdb_support.c | 796 memset(p, POISON_INUSE, best->size - 1); in debug_kmalloc()
|
/linux-3.4.99/drivers/staging/zsmalloc/ |
D | zsmalloc-main.c | 592 memset(link, POISON_INUSE, sizeof(*link)); in zs_malloc()
|
/linux-3.4.99/mm/ |
D | slub.c | 751 p + off, POISON_INUSE, s->size - off); in check_pad_bytes() 773 fault = memchr_inv(end - remainder, POISON_INUSE, remainder); in slab_pad_check() 776 while (end > fault && end[-1] == POISON_INUSE) in slab_pad_check() 782 restore_bytes(s, "slab padding", POISON_INUSE, end - remainder, end); in slab_pad_check() 799 endobject, POISON_INUSE, s->inuse - s->objsize); in check_object() 1377 memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page)); in new_slab()
|
D | slab.c | 3241 poison_obj(cachep, objp, POISON_INUSE); in cache_alloc_debugcheck_after()
|
/linux-3.4.99/Documentation/ |
D | BUG-HUNTING | 238 with this look at mm/slab.c and search for POISON_INUSE. When using this an
|