Home
last modified time | relevance | path

Searched refs:is_uprobe (Results 1 – 3 of 3) sorted by relevance

/linux/include/linux/
H A Dbpf.h2047 bool is_uprobe; member
2096 run_ctx.is_uprobe = false; in bpf_prog_run_array()
2137 run_ctx.is_uprobe = true; in bpf_prog_run_array_uprobe()
/linux/kernel/events/
H A Dcore.c10568 bool is_kprobe, is_uprobe, is_tracepoint, is_syscall_tp; in perf_event_set_bpf_prog() local
10574 is_uprobe = event->tp_event->flags & TRACE_EVENT_FL_UPROBE; in perf_event_set_bpf_prog()
10577 if (!is_kprobe && !is_uprobe && !is_tracepoint && !is_syscall_tp) in perf_event_set_bpf_prog()
10581 if (((is_kprobe || is_uprobe) && prog->type != BPF_PROG_TYPE_KPROBE) || in perf_event_set_bpf_prog()
10586 if (prog->type == BPF_PROG_TYPE_KPROBE && prog->sleepable && !is_uprobe) in perf_event_set_bpf_prog()
/linux/kernel/trace/
H A Dbpf_trace.c1080 if (run_ctx->is_uprobe) in BPF_CALL_1()