Home
last modified time | relevance | path

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

/Linux-v4.19/tools/testing/selftests/bpf/
Dbpf_helpers.h323 #define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ (ip) = (ctx)->link; }) macro
324 #define BPF_KRETPROBE_READ_RET_IP BPF_KPROBE_READ_RET_IP
326 #define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ (ip) = PT_REGS_RET(ctx); }) macro
327 #define BPF_KRETPROBE_READ_RET_IP BPF_KPROBE_READ_RET_IP
329 #define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ \ macro
/Linux-v4.19/samples/bpf/
Dtracex2_kern.c33 BPF_KPROBE_READ_RET_IP(loc, ctx); in bpf_prog2()