]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
perf build: Add sdt feature detection
authorMasami Hiramatsu <mhiramat@kernel.org>
Tue, 12 Jul 2016 10:05:56 +0000 (19:05 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 14 Jul 2016 02:09:09 +0000 (23:09 -0300)
This checks whether sys/sdt.h is available or not, which is required for
DTRACE_PROBE().

We can disable this feature by passing NO_SDT=1 when building.

This flag will be used for SDT test case and further SDT events in
perftools.

Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Hemant Kumar <hemant@linux.vnet.ibm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/146831795615.17065.17513820540591053933.stgit@devbox
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/build/Makefile.feature
tools/build/feature/Makefile
tools/build/feature/test-all.c
tools/build/feature/test-sdt.c [new file with mode: 0644]
tools/perf/Makefile.perf
tools/perf/config/Makefile
tools/perf/tests/make

index fe12bee574180de8f40803a113c15ce355c1b2fc..a120c6b755a9869798a8dbfd5c90919c52f02eac 100644 (file)
@@ -62,7 +62,8 @@ FEATURE_TESTS_BASIC :=                        \
        zlib                            \
        lzma                            \
        get_cpuid                       \
-       bpf
+       bpf                             \
+       sdt
 
 # FEATURE_TESTS_BASIC + FEATURE_TESTS_EXTRA is the complete list
 # of all feature tests
index d6017c1abdb00a8415cd627ac38c571d2a2cda5e..a0b29a31181611902b13465f989afb6aebfab983 100644 (file)
@@ -45,7 +45,8 @@ FILES=                                        \
        test-zlib.bin                   \
        test-lzma.bin                   \
        test-bpf.bin                    \
-       test-get_cpuid.bin
+       test-get_cpuid.bin              \
+       test-sdt.bin
 
 FILES := $(addprefix $(OUTPUT),$(FILES))
 
@@ -213,6 +214,9 @@ $(OUTPUT)test-get_cpuid.bin:
 $(OUTPUT)test-bpf.bin:
        $(BUILD)
 
+$(OUTPUT)test-sdt.bin:
+       $(BUILD)
+
 -include $(OUTPUT)*.d
 
 ###############################
index 843aed024a3a989b0528b657f4bbd2e5c59eb47c..699e43627397b5c3008cd74008016f4812550c77 100644 (file)
 # include "test-libcrypto.c"
 #undef main
 
+#define main main_test_sdt
+# include "test-sdt.c"
+#undef main
+
 int main(int argc, char *argv[])
 {
        main_test_libpython();
@@ -178,6 +182,7 @@ int main(int argc, char *argv[])
        main_test_get_cpuid();
        main_test_bpf();
        main_test_libcrypto();
+       main_test_sdt();
 
        return 0;
 }
diff --git a/tools/build/feature/test-sdt.c b/tools/build/feature/test-sdt.c
new file mode 100644 (file)
index 0000000..e4531a6
--- /dev/null
@@ -0,0 +1,7 @@
+#include <sys/sdt.h>
+
+int main(void)
+{
+       DTRACE_PROBE(provider, name);
+       return 0;
+}
index feb2c66b110ba3d642fd00d2eb682cb3267fdc71..a129fbc1ed37e435230d1a115a03696ac0cd36c3 100644 (file)
@@ -81,6 +81,9 @@ include ../scripts/utilities.mak
 #
 # Define NO_LIBBPF if you do not want BPF support
 #
+# Define NO_SDT if you do not want to define SDT event in perf tools,
+# note that it doesn't disable SDT scanning support.
+#
 # Define FEATURES_DUMP to provide features detection dump file
 # and bypass the feature detection
 
index 5ac42806077942572b26966b0a8ff0f7121bb936..24803c58049a20d0d62ab178a140cce2a4256d76 100644 (file)
@@ -355,6 +355,16 @@ ifndef NO_LIBELF
   endif # NO_LIBBPF
 endif # NO_LIBELF
 
+ifndef NO_SDT
+  ifneq ($(feature-sdt), 1)
+    msg := $(warning No sys/sdt.h found, no SDT events are defined, please install systemtap-sdt-devel or systemtap-sdt-dev);
+    NO_SDT := 1;
+  else
+    CFLAGS += -DHAVE_SDT_EVENT
+    $(call detected,CONFIG_SDT_EVENT)
+  endif
+endif
+
 ifdef PERF_HAVE_JITDUMP
   ifndef NO_DWARF
     $(call detected,CONFIG_JITDUMP)
index 51966d92fc829db0de6d601faa29dc20005e95e5..143f4d549769abf769c32361f0abecdef7efd880 100644 (file)
@@ -82,6 +82,7 @@ make_no_auxtrace    := NO_AUXTRACE=1
 make_no_libbpf     := NO_LIBBPF=1
 make_no_libcrypto   := NO_LIBCRYPTO=1
 make_with_babeltrace:= LIBBABELTRACE=1
+make_no_sdt        := NO_SDT=1
 make_tags           := tags
 make_cscope         := cscope
 make_help           := help
@@ -105,7 +106,7 @@ make_minimal        := NO_LIBPERL=1 NO_LIBPYTHON=1 NO_NEWT=1 NO_GTK2=1
 make_minimal        += NO_DEMANGLE=1 NO_LIBELF=1 NO_LIBUNWIND=1 NO_BACKTRACE=1
 make_minimal        += NO_LIBNUMA=1 NO_LIBAUDIT=1 NO_LIBBIONIC=1
 make_minimal        += NO_LIBDW_DWARF_UNWIND=1 NO_AUXTRACE=1 NO_LIBBPF=1
-make_minimal        += NO_LIBCRYPTO=1
+make_minimal        += NO_LIBCRYPTO=1 NO_SDT=1
 
 # $(run) contains all available tests
 run := make_pure