diff options
author | Steven Rostedt <srostedt@redhat.com> | 2011-04-25 14:32:42 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2011-04-29 22:53:04 -0400 |
commit | d2c8c3eafbf715306ec891e7ca52d3d999acbe31 (patch) | |
tree | 1dd5b7ae74f1dd951b542df3eb455af445a349c1 /include/linux | |
parent | 45a4a2372b364107cabea79f255b333236626416 (diff) | |
download | linux-d2c8c3eafbf715306ec891e7ca52d3d999acbe31.tar.gz linux-d2c8c3eafbf715306ec891e7ca52d3d999acbe31.tar.bz2 linux-d2c8c3eafbf715306ec891e7ca52d3d999acbe31.zip |
ftrace: Remove FTRACE_FL_CONVERTED flag
Since we disable all function tracer processing if we detect
that a modification of a instruction had failed, we do not need
to track that the record has failed. No more ftrace processing
is allowed, and the FTRACE_FL_CONVERTED flag is pointless.
The FTRACE_FL_CONVERTED flag was used to denote records that were
successfully converted from mcount calls into nops. But if a single
record fails, all of ftrace is disabled.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/ftrace.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index 2a195ffd4269..32047449b309 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h @@ -150,7 +150,6 @@ enum { FTRACE_FL_FILTER = (1 << 1), FTRACE_FL_ENABLED = (1 << 2), FTRACE_FL_NOTRACE = (1 << 3), - FTRACE_FL_CONVERTED = (1 << 4), }; struct dyn_ftrace { |