Searched refs:raw_tp (Results 1 – 1 of 1) sorted by relevance
1797 struct bpf_raw_tracepoint *raw_tp = filp->private_data; in bpf_raw_tracepoint_release() local1799 if (raw_tp->prog) { in bpf_raw_tracepoint_release()1800 bpf_probe_unregister(raw_tp->btp, raw_tp->prog); in bpf_raw_tracepoint_release()1801 bpf_prog_put(raw_tp->prog); in bpf_raw_tracepoint_release()1803 bpf_put_raw_tracepoint(raw_tp->btp); in bpf_raw_tracepoint_release()1804 kfree(raw_tp); in bpf_raw_tracepoint_release()1818 struct bpf_raw_tracepoint *raw_tp; in bpf_raw_tracepoint_open() local1833 raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER); in bpf_raw_tracepoint_open()1834 if (!raw_tp) { in bpf_raw_tracepoint_open()1838 raw_tp->btp = btp; in bpf_raw_tracepoint_open()[all …]