diff options
author | Tao Chen <chen.dylane@linux.dev> | 2025-06-03 23:43:07 +0800 |
---|---|---|
committer | Andrii Nakryiko <andrii@kernel.org> | 2025-06-05 11:44:52 -0700 |
commit | 2fe1c59347369fa856ae259e2fac3c8c8dd9d335 (patch) | |
tree | 70a43181fdcfd4b4fc254d5cbee31116b2e7c2ec /kernel/bpf/syscall.c | |
parent | 7fdaba912981e6fe7585517ccf3b5da59e17592e (diff) |
bpf: Add cookie to raw_tp bpf_link_info
After commit 68ca5d4eebb8 ("bpf: support BPF cookie in raw tracepoint
(raw_tp, tp_btf) programs"), we can show the cookie in bpf_link_info
like kprobe etc.
Signed-off-by: Tao Chen <chen.dylane@linux.dev>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Link: https://lore.kernel.org/bpf/20250603154309.3063644-1-chen.dylane@linux.dev
Diffstat (limited to 'kernel/bpf/syscall.c')
-rw-r--r-- | kernel/bpf/syscall.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c index dd5304c6ac3c..89d027cd7ca0 100644 --- a/kernel/bpf/syscall.c +++ b/kernel/bpf/syscall.c @@ -3688,6 +3688,7 @@ static int bpf_raw_tp_link_fill_link_info(const struct bpf_link *link, return -EINVAL; info->raw_tracepoint.tp_name_len = tp_len + 1; + info->raw_tracepoint.cookie = raw_tp_link->cookie; if (!ubuf) return 0; |