diff options
author | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2021-10-21 06:35:55 +0300 |
---|---|---|
committer | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2021-10-21 06:44:35 +0300 |
commit | 4a30e4c9305142ba40ab09a02a2e8ff3c1f3751f (patch) | |
tree | b44e5611b8ed627264e1431f1aa0e63054110670 /arch/x86/Kconfig | |
parent | 8646698aefad7547dc7acee8f8c2099d7653dc70 (diff) | |
download | linux-4a30e4c9305142ba40ab09a02a2e8ff3c1f3751f.tar.xz |
ftrace/x86_64: Have function graph tracer depend on DYNAMIC_FTRACE
The function graph tracer is going to now depend on
ARCH_SUPPORTS_FTRACE_OPS, as that also means that it can support ftrace
args. Since ARCH_SUPPORTS_FTRACE_OPS depends on DYNAMIC_FTRACE, this
means that the function graph tracer for x86_64 will need to depend on
DYNAMIC_FTRACE.
Link: https://lkml.kernel.org/r/20211020233555.16b0dbf2@rorschach.local.home
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index ab83c22d274e..e39e2bd6acc5 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -197,7 +197,7 @@ config X86 select HAVE_FAST_GUP select HAVE_FENTRY if X86_64 || DYNAMIC_FTRACE select HAVE_FTRACE_MCOUNT_RECORD - select HAVE_FUNCTION_GRAPH_TRACER + select HAVE_FUNCTION_GRAPH_TRACER if X86_32 || (X86_64 && DYNAMIC_FTRACE) select HAVE_FUNCTION_TRACER select HAVE_GCC_PLUGINS select HAVE_HW_BREAKPOINT |