diff options
author | Yonghong Song <yhs@fb.com> | 2020-07-20 19:33:59 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2020-07-21 23:26:26 +0300 |
commit | d8dfe5bfe856c0c72b1750322dbfcad402e73373 (patch) | |
tree | 85cda7933e3f4bbacf3a7d8d7f5fbe7fff83a672 /tools/testing | |
parent | bc4f0548f683a3d53359cef15f088d2d5bb4bc39 (diff) | |
download | linux-d8dfe5bfe856c0c72b1750322dbfcad402e73373.tar.xz |
tools/bpf: Sync btf_ids.h to tools
Sync kernel header btf_ids.h to tools directory.
Also define macro CONFIG_DEBUG_INFO_BTF before
including btf_ids.h in prog_tests/resolve_btfids.c
since non-stub definitions for BTF_ID_LIST etc. macros
are defined under CONFIG_DEBUG_INFO_BTF. This
prevented test_progs from failing.
Signed-off-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20200720163359.1393079-1-yhs@fb.com
Diffstat (limited to 'tools/testing')
-rw-r--r-- | tools/testing/selftests/bpf/prog_tests/resolve_btfids.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/resolve_btfids.c b/tools/testing/selftests/bpf/prog_tests/resolve_btfids.c index 403be6f36cba..22d83bba4e91 100644 --- a/tools/testing/selftests/bpf/prog_tests/resolve_btfids.c +++ b/tools/testing/selftests/bpf/prog_tests/resolve_btfids.c @@ -6,6 +6,7 @@ #include <bpf/libbpf.h> #include <linux/btf.h> #include <linux/kernel.h> +#define CONFIG_DEBUG_INFO_BTF #include <linux/btf_ids.h> #include "test_progs.h" |