]> git.baikalelectronics.ru Git - kernel.git/commit
tools/bpf: move libbpf pr_* debug print functions to headers
authorYonghong Song <yhs@fb.com>
Sat, 2 Feb 2019 00:14:14 +0000 (16:14 -0800)
committerAlexei Starovoitov <ast@kernel.org>
Mon, 4 Feb 2019 17:40:58 +0000 (09:40 -0800)
commit4c06c74e0f50d0f89df4bb5645d95b5ede4529cd
tree3bcd5c6a65655d88808ed72815e0e68f8cf02dd9
parentf11e21296a6e54c577bc741bc9bf9b33cd3c2052
tools/bpf: move libbpf pr_* debug print functions to headers

A global function libbpf_print, which is invisible
outside the shared library, is defined to print based
on levels. The pr_warning, pr_info and pr_debug
macros are moved into the newly created header
common.h. So any .c file including common.h can
use these macros directly.

Currently btf__new and btf_ext__new API has an argument getting
__pr_debug function pointer into btf.c so the debugging information
can be printed there. This patch removed this parameter
from btf__new and btf_ext__new and directly using pr_debug in btf.c.

Another global function libbpf_print_level_available, also
invisible outside the shared library, can test
whether a particular level debug printing is
available or not. It is used in btf.c to
test whether DEBUG level debug printing is availabl or not,
based on which the log buffer will be allocated when loading
btf to the kernel.

Signed-off-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
tools/lib/bpf/btf.c
tools/lib/bpf/btf.h
tools/lib/bpf/libbpf.c
tools/lib/bpf/libbpf.h
tools/lib/bpf/libbpf_util.h [new file with mode: 0644]
tools/lib/bpf/test_libbpf.cpp