trace: Kconfig: disable filtering by default

The trace filtering will suppress useful logs and make debugging
difficult, disable it by default.

Signed-off-by: Keyon Jie <yang.jie@linux.intel.com>
This commit is contained in:
Keyon Jie 2021-07-26 19:04:26 +08:00 committed by Liam Girdwood
parent 2a1f2c7efd
commit 9fadef789e
1 changed files with 3 additions and 3 deletions

View File

@ -35,14 +35,14 @@ config TRACEM
config TRACE_FILTERING
bool "Trace filtering"
depends on TRACE
default y
default n
help
Filtering of trace messages based on their verbosity level and frequency.
config TRACE_FILTERING_VERBOSITY
bool "Filter by verbosity"
depends on TRACE_FILTERING
default y
default n
help
Filtering by log verbosity level, where maximum verbosity allowed is specified for each
context and may be adjusted in runtime.
@ -50,7 +50,7 @@ config TRACE_FILTERING_VERBOSITY
config TRACE_FILTERING_ADAPTIVE
bool "Adaptive rate limiting"
depends on TRACE_FILTERING
default y
default n
help
Adaptive filtering of trace messages, tracking up to CONFIG_TRACE_RECENT_ENTRIES_COUNT,
suppressing all repeated messages for up to CONFIG_TRACE_RECENT_TIME_THRESHOLD cycles.