mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
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>
This commit is contained in:
parent
45a4a2372b
commit
d2c8c3eafb
2 changed files with 4 additions and 9 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue