From: Jakub Kicinski Date: Sat, 14 Jul 2018 02:08:59 +0000 (-0700) Subject: tools: include reallocarray feature test in FEATURE_TESTS_BASIC X-Git-Tag: v4.19~410^2~364^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=db42a21a1e8d11a30a06050281c2723ec78b63a7;p=platform%2Fkernel%2Flinux-rpi.git tools: include reallocarray feature test in FEATURE_TESTS_BASIC perf propagates its feature check results to libbpf. This means features for which perf probes must be a superset of libbpf's required features. perf depends on FEATURE_TESTS_BASIC for its list of features. commit 531b014e7a2f ("tools: bpf: make use of reallocarray") added reallocarray use to libbpf, make perf also perform the reallocarray feature check. Fixes: 531b014e7a2f ("tools: bpf: make use of reallocarray") Reported-by: Guenter Roeck Signed-off-by: Jakub Kicinski Tested-by: Guenter Roeck Signed-off-by: Daniel Borkmann --- diff --git a/tools/build/Makefile.feature b/tools/build/Makefile.feature index 5b6dda3..f216b2f 100644 --- a/tools/build/Makefile.feature +++ b/tools/build/Makefile.feature @@ -57,6 +57,7 @@ FEATURE_TESTS_BASIC := \ libunwind-aarch64 \ pthread-attr-setaffinity-np \ pthread-barrier \ + reallocarray \ stackprotector-all \ timerfd \ libdw-dwarf-unwind \