Searched refs:entry_ip (Results 1 – 5 of 5) sorted by relevance
/Linux-v6.6/kernel/trace/ |
D | trace_fprobe.c | 172 __fentry_trace_func(struct trace_fprobe *tf, unsigned long entry_ip, in NOKPROBE_SYMBOL() 196 entry->ip = entry_ip; in NOKPROBE_SYMBOL() 203 fentry_trace_func(struct trace_fprobe *tf, unsigned long entry_ip, in fentry_trace_func() argument 209 __fentry_trace_func(tf, entry_ip, regs, link->file); in fentry_trace_func() 215 __fexit_trace_func(struct trace_fprobe *tf, unsigned long entry_ip, in __fexit_trace_func() argument 239 entry->func = entry_ip; in __fexit_trace_func() 247 fexit_trace_func(struct trace_fprobe *tf, unsigned long entry_ip, in fexit_trace_func() argument 253 __fexit_trace_func(tf, entry_ip, ret_ip, regs, link->file); in fexit_trace_func() 259 static int fentry_perf_func(struct trace_fprobe *tf, unsigned long entry_ip, in fentry_perf_func() argument 281 entry->ip = entry_ip; in fentry_perf_func() [all …]
|
D | fprobe.c | 19 unsigned long entry_ip; member 42 fpr->entry_ip = ip; in __fprobe_handler() 138 bit = ftrace_test_recursion_trylock(fpr->entry_ip, fpr->entry_parent_ip); in fprobe_exit_handler() 144 fp->exit_handler(fp, fpr->entry_ip, ret_ip, regs, in fprobe_exit_handler()
|
D | bpf_trace.c | 2519 unsigned long entry_ip; member 2675 u64 *cookie, entry_ip; in bpf_kprobe_multi_cookie() local 2684 entry_ip = run_ctx->entry_ip; in bpf_kprobe_multi_cookie() 2685 addr = bsearch(&entry_ip, link->addrs, link->cnt, sizeof(entry_ip), in bpf_kprobe_multi_cookie() 2698 return run_ctx->entry_ip; in bpf_kprobe_multi_entry_ip() 2703 unsigned long entry_ip, struct pt_regs *regs) in kprobe_multi_link_prog_run() argument 2707 .entry_ip = entry_ip, in kprobe_multi_link_prog_run() 3042 unsigned long entry_ip; member 3083 unsigned long entry_ip, in uprobe_prog_run() argument 3088 .entry_ip = entry_ip, in uprobe_prog_run() [all …]
|
/Linux-v6.6/include/linux/ |
D | fprobe.h | 37 int (*entry_handler)(struct fprobe *fp, unsigned long entry_ip, 40 void (*exit_handler)(struct fprobe *fp, unsigned long entry_ip,
|
/Linux-v6.6/Documentation/trace/ |
D | fprobe.rst | 94 …int entry_callback(struct fprobe *fp, unsigned long entry_ip, unsigned long ret_ip, struct pt_regs… 96 …void exit_callback(struct fprobe *fp, unsigned long entry_ip, unsigned long ret_ip, struct pt_regs… 98 Note that the @entry_ip is saved at function entry and passed to exit handler. 106 @entry_ip 117 the instruction pointer of @regs may be different from the @entry_ip 119 to use @entry_ip. On the other hand, in the exit_handler, the instruction
|