/kernel/trace/ |
D | trace_entries.h | 167 __array( unsigned long, caller, FTRACE_STACK_ENTRIES ) 173 (void *)__entry->caller[0], (void *)__entry->caller[1], 174 (void *)__entry->caller[2], (void *)__entry->caller[3], 175 (void *)__entry->caller[4], (void *)__entry->caller[5], 176 (void *)__entry->caller[6], (void *)__entry->caller[7]) 185 __array( unsigned long, caller, FTRACE_STACK_ENTRIES ) 191 (void *)__entry->caller[0], (void *)__entry->caller[1], 192 (void *)__entry->caller[2], (void *)__entry->caller[3], 193 (void *)__entry->caller[4], (void *)__entry->caller[5], 194 (void *)__entry->caller[6], (void *)__entry->caller[7])
|
D | trace_output.c | 1099 for (p = field->caller; p && p < end && *p != ULONG_MAX; p++) { in trace_stack_print() 1149 unsigned long ip = field->caller[i]; in trace_user_stack_print()
|
D | trace_osnoise.c | 638 memcpy(&entry->caller, fstack->calls, size); in __timerlat_dump_stack()
|
D | trace.c | 3085 (sizeof(*entry) - sizeof(entry->caller)) + size, in __ftrace_trace_stack() 3091 memcpy(&entry->caller, fstack->calls, size); in __ftrace_trace_stack() 3196 memset(&entry->caller, 0, sizeof(entry->caller)); in ftrace_trace_userstack() 3198 stack_trace_save_user(entry->caller, FTRACE_STACK_ENTRIES); in ftrace_trace_userstack()
|
/kernel/ |
D | stop_machine.c | 45 unsigned long caller; member 63 printk("%sStopper: %pS <- %pS\n", log_lvl, stopper->fn, (void *)stopper->caller); in print_stop_info() 142 struct cpu_stop_work work = { .fn = fn, .arg = arg, .done = &done, .caller = _RET_IP_ }; in stop_one_cpu() 352 .caller = _RET_IP_, in stop_two_cpus() 388 *work_buf = (struct cpu_stop_work){ .fn = fn, .arg = arg, .caller = _RET_IP_, }; in stop_one_cpu_nowait() 414 work->caller = _RET_IP_; in queue_stop_cpus_work() 510 stopper->caller = work->caller; in cpu_stopper_thread() 521 stopper->caller = 0; in cpu_stopper_thread()
|
D | panic.c | 651 void __warn(const char *file, int line, void *caller, unsigned taint, in __warn() argument 659 caller); in __warn() 662 raw_smp_processor_id(), current->pid, caller); in __warn() 680 trace_error_report_end(ERROR_DETECTOR_WARN, (unsigned long)caller); in __warn()
|
D | seccomp.c | 487 struct task_struct *thread, *caller; in seccomp_can_sync_threads() local 493 caller = current; in seccomp_can_sync_threads() 494 for_each_thread(caller, thread) { in seccomp_can_sync_threads() 498 if (thread == caller) in seccomp_can_sync_threads() 504 caller->seccomp.filter))) in seccomp_can_sync_threads() 584 struct task_struct *thread, *caller; in seccomp_sync_threads() local 590 caller = current; in seccomp_sync_threads() 591 for_each_thread(caller, thread) { in seccomp_sync_threads() 593 if (thread == caller) in seccomp_sync_threads() 597 get_seccomp_filter(caller); in seccomp_sync_threads() [all …]
|
/kernel/dma/ |
D | remap.c | 23 pgprot_t prot, const void *caller) in dma_common_pages_remap() argument 39 pgprot_t prot, const void *caller) in dma_common_contiguous_remap() argument
|
/kernel/printk/ |
D | printk.c | 559 char caller[20]; in info_print_ext_header() local 563 snprintf(caller, sizeof(caller), ",caller=%c%u", in info_print_ext_header() 566 caller[0] = '\0'; in info_print_ext_header() 573 ts_usec, info->flags & LOG_CONT ? 'c' : '-', caller); in info_print_ext_header() 1283 char caller[12]; in print_caller() local 1285 snprintf(caller, sizeof(caller), "%c%u", in print_caller() 1287 return sprintf(buf, "[%6s]", caller); in print_caller()
|
/kernel/bpf/ |
D | verifier.c | 6904 struct bpf_func_state *caller, 6909 struct bpf_func_state *caller, 6918 struct bpf_func_state *caller, *callee; in __check_func_call() local 6928 caller = state->frame[state->curframe]; in __check_func_call() 6938 err = btf_check_subprog_call(env, subprog, caller->regs); in __check_func_call() 6951 clear_caller_saved_regs(env, caller->regs); in __check_func_call() 6954 mark_reg_unknown(env, caller->regs, BPF_REG_0); in __check_func_call() 6955 caller->regs[BPF_REG_0].subreg_def = DEF_NOT_SUBREG; in __check_func_call() 6984 callee->async_entry_cnt = caller->async_entry_cnt + 1; in __check_func_call() 6987 err = set_callee_state_cb(env, caller, callee, *insn_idx); in __check_func_call() [all …]
|