projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed2cf90
)
tracing: Simplify the Kconfig dependency of FTRACE
author
Masahiro Yamada
<masahiroy@kernel.org>
Sat, 31 Jul 2021 05:22:31 +0000
(14:22 +0900)
committer
Steven Rostedt (VMware)
<rostedt@goodmis.org>
Mon, 16 Aug 2021 15:37:20 +0000
(11:37 -0400)
The entire FTRACE block is surrounded by 'if TRACING_SUPPORT' ...
'endif'.
Using 'depends on' is a simpler way to guard FTRACE.
Link:
https://lkml.kernel.org/r/20210731052233.4703-1-masahiroy@kernel.org
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
kernel/trace/Kconfig
patch
|
blob
|
history
diff --git
a/kernel/trace/Kconfig
b/kernel/trace/Kconfig
index 3ee23f4d437fed538729362502ae3a219700869a..420ff4bc67fd7032c53f45d7e36bd338f2ca6046 100644
(file)
--- a/
kernel/trace/Kconfig
+++ b/
kernel/trace/Kconfig
@@
-135,10
+135,9
@@
config TRACING_SUPPORT
depends on STACKTRACE_SUPPORT
default y
-if TRACING_SUPPORT
-
menuconfig FTRACE
bool "Tracers"
+ depends on TRACING_SUPPORT
default y if DEBUG_KERNEL
help
Enable the kernel tracing infrastructure.
@@
-1037,6
+1036,3
@@
config HIST_TRIGGERS_DEBUG
If unsure, say N.
endif # FTRACE
-
-endif # TRACING_SUPPORT
-