Searched refs:stack (Results 1 – 8 of 8) sorted by relevance
/mm/kasan/ |
D | Makefile | 17 CFLAGS_common.o := $(call cc-option, -fno-conserve-stack -fno-stack-protector) 18 CFLAGS_generic.o := $(call cc-option, -fno-conserve-stack -fno-stack-protector) 19 CFLAGS_generic_report.o := $(call cc-option, -fno-conserve-stack -fno-stack-protector) 20 CFLAGS_tags.o := $(call cc-option, -fno-conserve-stack -fno-stack-protector)
|
D | report.c | 103 if (track->stack) { in print_track() 107 nr_entries = stack_depot_fetch(track->stack, &entries); in print_track() 203 return addr >= (void *)&init_thread_union.stack && in init_task_stack_addr() 204 (addr <= (void *)&init_thread_union.stack + in init_task_stack_addr() 205 sizeof(init_thread_union.stack)); in init_task_stack_addr()
|
D | kasan.h | 95 depot_stack_handle_t stack; member
|
D | common.c | 77 track->stack = save_stack(flags); in set_track()
|
/mm/ |
D | usercopy.c | 36 const void * const stack = task_stack_page(current); in check_stack_object() local 37 const void * const stackend = stack + THREAD_SIZE; in check_stack_object() 41 if (obj + len <= stack || stackend <= obj) in check_stack_object() 49 if (obj < stack || stackend < obj + len) in check_stack_object() 53 ret = arch_within_stack_frames(stack, stackend, obj, len); in check_stack_object()
|
D | kmemleak.c | 1474 void *stack = try_get_task_stack(p); in kmemleak_scan() local 1475 if (stack) { in kmemleak_scan() 1476 scan_block(stack, stack + THREAD_SIZE, NULL); in kmemleak_scan()
|
D | Kconfig | 606 int "Maximum user stack size for 32-bit processes (MB)" 611 This is the maximum stack size in Megabytes in the VM layout of 32-bit 612 user processes when the stack grows upwards (currently only on parisc 613 arch). The stack will be located at the highest memory address minus
|
D | Kconfig.debug | 25 with stack traces of last allocation and freeing of the page, when
|