Home
last modified time | relevance | path

Searched refs:BPF_KPROBE_READ_RET_IP (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/kernel/tools/lib/bpf/
H A Dbpf_tracing.h285 #define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ (ip) = (ctx)->link; }) macro
286 #define BPF_KRETPROBE_READ_RET_IP BPF_KPROBE_READ_RET_IP
288 #define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ (ip) = PT_REGS_RET(ctx); }) macro
289 #define BPF_KRETPROBE_READ_RET_IP BPF_KPROBE_READ_RET_IP
291 #define BPF_KPROBE_READ_RET_IP(ip, ctx) \ macro
/OK3568_Linux_fs/kernel/samples/bpf/
H A Dtracex2_kern.c35 BPF_KPROBE_READ_RET_IP(loc, ctx); in bpf_prog2()