diff options
author | Andrii Nakryiko <andrii@kernel.org> | 2022-05-18 11:59:14 -0700 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2022-05-19 09:03:31 -0700 |
commit | e2371b1632b1c61c1fa726a17b82e6833a9e4d85 (patch) | |
tree | f4290cbef869c0ce70c319d7efb3d358d5db7f65 /tools/lib/bpf/libbpf.map | |
parent | 056431ae4d790efd0372c1daf93569fdd2814190 (diff) | |
download | lwn-e2371b1632b1c61c1fa726a17b82e6833a9e4d85.tar.gz lwn-e2371b1632b1c61c1fa726a17b82e6833a9e4d85.zip |
libbpf: start 1.0 development cycle
Start libbpf 1.0 development cycle by adding LIBBPF_1.0.0 section to
libbpf.map file and marking all current symbols as local. As we remove
all the deprecated APIs we'll populate global list before the final 1.0
release.
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/r/20220518185915.3529475-3-andrii@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/lib/bpf/libbpf.map')
-rw-r--r-- | tools/lib/bpf/libbpf.map | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/lib/bpf/libbpf.map b/tools/lib/bpf/libbpf.map index 6b36f46ab5d8..52973cffc20c 100644 --- a/tools/lib/bpf/libbpf.map +++ b/tools/lib/bpf/libbpf.map @@ -459,3 +459,7 @@ LIBBPF_0.8.0 { libbpf_register_prog_handler; libbpf_unregister_prog_handler; } LIBBPF_0.7.0; + +LIBBPF_1.0.0 { + local: *; +}; |