mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
ftrace: Have the cached module list show in set_ftrace_filter
When writing in a module filter into set_ftrace_filter for a module that is not yet loaded, it it cached, and will be executed when the module is loaded (although that is not implemented yet at this commit). Display the list of cached modules to be traced. Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
This commit is contained in:
parent
673feb9d76
commit
5985ea8bd5
2 changed files with 102 additions and 13 deletions
|
@ -446,7 +446,8 @@ enum {
|
|||
FTRACE_ITER_PRINTALL = (1 << 2),
|
||||
FTRACE_ITER_DO_PROBES = (1 << 3),
|
||||
FTRACE_ITER_PROBE = (1 << 4),
|
||||
FTRACE_ITER_ENABLED = (1 << 5),
|
||||
FTRACE_ITER_MOD = (1 << 5),
|
||||
FTRACE_ITER_ENABLED = (1 << 6),
|
||||
};
|
||||
|
||||
void arch_ftrace_update_code(int command);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue