diff options
author | Robert Elliott <elliott@hp.com> | 2014-05-20 18:10:36 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2014-05-20 23:28:34 -0400 |
commit | ccdb594653b1c0d5b0f3e6f8bf764c544ba0606d (patch) | |
tree | 1ba778cc5031c747ee721f62b4ff00236d258f8d /kernel | |
parent | 4449bf927b61bdb4389393c6fea6837214d1ace7 (diff) |
tracing: Eliminate duplicate TRACE_GRAPH_PRINT_xx defines
Eliminate duplicate TRACE_GRAPH_PRINT_xx defines
in trace_functions_graph.c that are already in
trace.h.
Add TRACE_GRAPH_PRINT_IRQS to trace.h, which is
the only one that is missing.
Link: http://lkml.kernel.org/p/20140520221031.8359.24733.stgit@beardog.cce.hp.com
Signed-off-by: Robert Elliott <elliott@hp.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/trace/trace.h | 1 | ||||
-rw-r--r-- | kernel/trace/trace_functions_graph.c | 9 |
2 files changed, 1 insertions, 9 deletions
diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index 3b3e09e61f33..68050633255e 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h | |||
@@ -724,6 +724,7 @@ extern unsigned long trace_flags; | |||
724 | #define TRACE_GRAPH_PRINT_PROC 0x8 | 724 | #define TRACE_GRAPH_PRINT_PROC 0x8 |
725 | #define TRACE_GRAPH_PRINT_DURATION 0x10 | 725 | #define TRACE_GRAPH_PRINT_DURATION 0x10 |
726 | #define TRACE_GRAPH_PRINT_ABS_TIME 0x20 | 726 | #define TRACE_GRAPH_PRINT_ABS_TIME 0x20 |
727 | #define TRACE_GRAPH_PRINT_IRQS 0x40 | ||
727 | #define TRACE_GRAPH_PRINT_FILL_SHIFT 28 | 728 | #define TRACE_GRAPH_PRINT_FILL_SHIFT 28 |
728 | #define TRACE_GRAPH_PRINT_FILL_MASK (0x3 << TRACE_GRAPH_PRINT_FILL_SHIFT) | 729 | #define TRACE_GRAPH_PRINT_FILL_MASK (0x3 << TRACE_GRAPH_PRINT_FILL_SHIFT) |
729 | 730 | ||
diff --git a/kernel/trace/trace_functions_graph.c b/kernel/trace/trace_functions_graph.c index b86dd4d8c6a6..af08dd531cb8 100644 --- a/kernel/trace/trace_functions_graph.c +++ b/kernel/trace/trace_functions_graph.c | |||
@@ -38,15 +38,6 @@ struct fgraph_data { | |||
38 | 38 | ||
39 | #define TRACE_GRAPH_INDENT 2 | 39 | #define TRACE_GRAPH_INDENT 2 |
40 | 40 | ||
41 | /* Flag options */ | ||
42 | #define TRACE_GRAPH_PRINT_OVERRUN 0x1 | ||
43 | #define TRACE_GRAPH_PRINT_CPU 0x2 | ||
44 | #define TRACE_GRAPH_PRINT_OVERHEAD 0x4 | ||
45 | #define TRACE_GRAPH_PRINT_PROC 0x8 | ||
46 | #define TRACE_GRAPH_PRINT_DURATION 0x10 | ||
47 | #define TRACE_GRAPH_PRINT_ABS_TIME 0x20 | ||
48 | #define TRACE_GRAPH_PRINT_IRQS 0x40 | ||
49 | |||
50 | static unsigned int max_depth; | 41 | static unsigned int max_depth; |
51 | 42 | ||
52 | static struct tracer_opt trace_opts[] = { | 43 | static struct tracer_opt trace_opts[] = { |