diff options
author | Tao Chen <chen.dylane@linux.dev> | 2025-07-10 11:20:37 +0800 |
---|---|---|
committer | Andrii Nakryiko <andrii@kernel.org> | 2025-07-11 11:01:08 -0700 |
commit | 0eeeebdcc5feeec48118f7a3df2ac818e694ccc7 (patch) | |
tree | 6b205b0357200830449303f9a8c42760b11534ce /include/linux/bpf.h | |
parent | 2a76a80c7ffc9894b90126af7b17584195b40b7a (diff) |
bpf: Remove attach_type in bpf_tracing_link
Use attach_type in bpf_link, and remove it in bpf_tracing_link.
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/20250710032038.888700-7-chen.dylane@linux.dev
Diffstat (limited to 'include/linux/bpf.h')
-rw-r--r-- | include/linux/bpf.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/bpf.h b/include/linux/bpf.h index a9ee9c14b486..bc887831eaa5 100644 --- a/include/linux/bpf.h +++ b/include/linux/bpf.h @@ -1784,7 +1784,6 @@ struct bpf_shim_tramp_link { struct bpf_tracing_link { struct bpf_tramp_link link; - enum bpf_attach_type attach_type; struct bpf_trampoline *trampoline; struct bpf_prog *tgt_prog; }; |