diff options
author | Andrii Nakryiko <andrii@kernel.org> | 2021-12-02 00:28:17 +0100 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2021-12-03 00:23:40 +0100 |
commit | dbdd2c7f8cec2d09ae0e1bd707ae6050fa1c105f (patch) | |
tree | fab873c42549773bc8ba52d78a3ce9c32435abae /tools/lib/bpf/libbpf_version.h | |
parent | libbpf: Use __u32 fields in bpf_map_create_opts (diff) | |
download | linux-dbdd2c7f8cec2d09ae0e1bd707ae6050fa1c105f.tar.xz linux-dbdd2c7f8cec2d09ae0e1bd707ae6050fa1c105f.zip |
libbpf: Add API to get/set log_level at per-program level
Add bpf_program__set_log_level() and bpf_program__log_level() to fetch
and adjust log_level sent during BPF_PROG_LOAD command. This allows to
selectively request more or less verbose output in BPF verifier log.
Also bump libbpf version to 0.7 and make these APIs the first in v0.7.
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20211201232824.3166325-3-andrii@kernel.org
Diffstat (limited to 'tools/lib/bpf/libbpf_version.h')
-rw-r--r-- | tools/lib/bpf/libbpf_version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/bpf/libbpf_version.h b/tools/lib/bpf/libbpf_version.h index dd56d76f291c..0fefefc3500b 100644 --- a/tools/lib/bpf/libbpf_version.h +++ b/tools/lib/bpf/libbpf_version.h @@ -4,6 +4,6 @@ #define __LIBBPF_VERSION_H #define LIBBPF_MAJOR_VERSION 0 -#define LIBBPF_MINOR_VERSION 6 +#define LIBBPF_MINOR_VERSION 7 #endif /* __LIBBPF_VERSION_H */ |