diff options
author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | 2015-09-28 15:37:49 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2015-09-29 12:56:40 -0400 |
commit | 03905582fd093940cf609956adf6feb494e45346 (patch) | |
tree | 9ebf39553945724932fbef06701044ea5a063321 /kernel/trace/trace.h | |
parent | ef92480a58c3b4dac5eccbc787131a51a3b0a45c (diff) | |
download | lwn-03905582fd093940cf609956adf6feb494e45346.tar.gz lwn-03905582fd093940cf609956adf6feb494e45346.zip |
tracing: Move "display-graph" option to main options
In order to facilitate making all tracer options visible even when the
tracer is not active, we need to get rid of duplicate options. Any option
that is shared between multiple tracers really should be a main option.
As the wakeup and irqsoff tracers both use the "display-graph" option, and
use it exactly the same way, move that option from the tracer options to the
main options and consolidate them.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace/trace.h')
-rw-r--r-- | kernel/trace/trace.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index 107cf081ac27..dfa3cd2feb22 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h @@ -913,6 +913,7 @@ enum trace_iterator_flags { TRACE_ITER_IRQ_INFO = 0x800000, TRACE_ITER_MARKERS = 0x1000000, TRACE_ITER_FUNCTION = 0x2000000, + TRACE_ITER_DISPLAY_GRAPH = 0x4000000, }; /* |