perf tools: Move perf_call_graph_mode enum from perf.h
authorJiri Olsa <[email protected]>
Mon, 5 May 2014 10:46:17 +0000 (12:46 +0200)
committerJiri Olsa <[email protected]>
Mon, 5 May 2014 15:48:10 +0000 (17:48 +0200)
Into util/callchain.h header where all callchain related
structures should be.

Acked-by: Arnaldo Carvalho de Melo <[email protected]>
Acked-by: Peter Zijlstra <[email protected]>
Cc: Arnaldo Carvalho de Melo <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Corey Ashford <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Jiri Olsa <[email protected]>
tools/perf/perf.h
tools/perf/util/callchain.h

index cf8f2281ad8528f4ccae1039432a3d4094d74351..d51a994f2e6412e1e4b87d8a34f78e65c724ac7f 100644 (file)
@@ -222,13 +222,6 @@ void pthread__unblock_sigwinch(void);
 
 #include "util/target.h"
 
-enum perf_call_graph_mode {
-       CALLCHAIN_NONE,
-       CALLCHAIN_FP,
-       CALLCHAIN_DWARF,
-       CALLCHAIN_MAX
-};
-
 struct record_opts {
        struct target target;
        int          call_graph;
index dda4cf8b534ca6f7be453c87acfc6f0ba2fd3d46..bde2b0cc24cf473c463cc4a030d7ff50036d08dd 100644 (file)
@@ -7,6 +7,13 @@
 #include "event.h"
 #include "symbol.h"
 
+enum perf_call_graph_mode {
+       CALLCHAIN_NONE,
+       CALLCHAIN_FP,
+       CALLCHAIN_DWARF,
+       CALLCHAIN_MAX
+};
+
 enum chain_mode {
        CHAIN_NONE,
        CHAIN_FLAT,