aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ftrace.h
diff options
context:
space:
mode:
authorSteven Rostedt (VMware) <rostedt@goodmis.org>2017-06-23 16:05:11 -0400
committerSteven Rostedt (VMware) <rostedt@goodmis.org>2017-06-26 11:53:02 -0400
commit5985ea8bd5d1b820b909af49fbc2767a990080a6 (patch)
treee9c6f971be48522aec8a45b8140ccef39f6d1ca0 /include/linux/ftrace.h
parentftrace: Add :mod: caching infrastructure to trace_array (diff)
downloadlinux-dev-5985ea8bd5d1b820b909af49fbc2767a990080a6.tar.xz
linux-dev-5985ea8bd5d1b820b909af49fbc2767a990080a6.zip
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>
Diffstat (limited to 'include/linux/ftrace.h')
-rw-r--r--include/linux/ftrace.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h
index 1b6992e994e6..9fb9a67dc9d4 100644
--- a/include/linux/ftrace.h
+++ b/include/linux/ftrace.h
@@ -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);