/kernel/trace/ |
D | trace_entries.h | 177 __dynamic_array(unsigned long, caller ) 183 (void *)__entry->caller[0], (void *)__entry->caller[1], 184 (void *)__entry->caller[2], (void *)__entry->caller[3], 185 (void *)__entry->caller[4], (void *)__entry->caller[5], 186 (void *)__entry->caller[6], (void *)__entry->caller[7]), 197 __array( unsigned long, caller, FTRACE_STACK_ENTRIES ) 203 (void *)__entry->caller[0], (void *)__entry->caller[1], 204 (void *)__entry->caller[2], (void *)__entry->caller[3], 205 (void *)__entry->caller[4], (void *)__entry->caller[5], 206 (void *)__entry->caller[6], (void *)__entry->caller[7]),
|
D | trace_output.c | 1060 for (p = field->caller; p && p < end && *p != ULONG_MAX; p++) { in trace_stack_print() 1110 unsigned long ip = field->caller[i]; in trace_user_stack_print()
|
D | trace.c | 2862 memcpy(&entry->caller, fstack->calls, size); in __ftrace_trace_stack() 2970 memset(&entry->caller, 0, sizeof(entry->caller)); in ftrace_trace_userstack() 2972 stack_trace_save_user(entry->caller, FTRACE_STACK_ENTRIES); in ftrace_trace_userstack()
|
/kernel/dma/ |
D | remap.c | 24 size_t size, pgprot_t prot, const void *caller) in __dma_common_pages_remap() argument 28 area = get_vm_area_caller(size, VM_DMA_COHERENT, caller); in __dma_common_pages_remap() 45 pgprot_t prot, const void *caller) in dma_common_pages_remap() argument 49 area = __dma_common_pages_remap(pages, size, prot, caller); in dma_common_pages_remap() 63 pgprot_t prot, const void *caller) in dma_common_contiguous_remap() argument 76 area = __dma_common_pages_remap(pages, size, prot, caller); in dma_common_contiguous_remap()
|
/kernel/ |
D | seccomp.c | 339 struct task_struct *thread, *caller; in seccomp_can_sync_threads() local 345 caller = current; in seccomp_can_sync_threads() 346 for_each_thread(caller, thread) { in seccomp_can_sync_threads() 350 if (thread == caller) in seccomp_can_sync_threads() 356 caller->seccomp.filter))) in seccomp_can_sync_threads() 380 struct task_struct *thread, *caller; in seccomp_sync_threads() local 386 caller = current; in seccomp_sync_threads() 387 for_each_thread(caller, thread) { in seccomp_sync_threads() 389 if (thread == caller) in seccomp_sync_threads() 393 get_seccomp_filter(caller); in seccomp_sync_threads() [all …]
|
D | panic.c | 558 void __warn(const char *file, int line, void *caller, unsigned taint, in __warn() argument 566 caller); in __warn() 569 raw_smp_processor_id(), current->pid, caller); in __warn()
|
/kernel/debug/kdb/ |
D | kdb_support.c | 695 void *caller; member 788 best->caller = __builtin_return_address(0); in debug_kmalloc() 821 h->caller = NULL; in debug_kfree() 897 __func__, h_used, h_used->size, h_used->caller); in debug_kusage() 906 __func__, h_used, h_used->size, h_used->caller); in debug_kusage()
|
/kernel/printk/ |
D | printk.c | 718 char caller[20]; in msg_print_ext_header() local 722 snprintf(caller, sizeof(caller), ",caller=%c%u", in msg_print_ext_header() 725 caller[0] = '\0'; in msg_print_ext_header() 732 msg->flags & LOG_CONT ? 'c' : '-', caller); in msg_print_ext_header() 1278 char caller[12]; in print_caller() local 1280 snprintf(caller, sizeof(caller), "%c%u", in print_caller() 1282 return sprintf(buf, "[%6s]", caller); in print_caller()
|
/kernel/bpf/ |
D | verifier.c | 3766 struct bpf_func_state *caller, *callee; in check_func_call() local 3783 caller = state->frame[state->curframe]; in check_func_call() 3806 err = transfer_reference_state(callee, caller); in check_func_call() 3814 callee->regs[i] = caller->regs[i]; in check_func_call() 3818 mark_reg_not_init(env, caller->regs, caller_saved[i]); in check_func_call() 3830 print_verifier_state(env, caller); in check_func_call() 3840 struct bpf_func_state *caller, *callee; in prepare_func_exit() local 3858 caller = state->frame[state->curframe]; in prepare_func_exit() 3860 caller->regs[BPF_REG_0] = *r0; in prepare_func_exit() 3863 err = transfer_reference_state(caller, callee); in prepare_func_exit() [all …]
|