aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/config.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/config.go b/config/config.go
index a392b69f5..3983ba002 100644
--- a/config/config.go
+++ b/config/config.go
@@ -219,7 +219,8 @@ func parseSuppressions(cfg *Config) ([]*regexp.Regexp, error) {
"fatal error: runtime: out of memory",
"fatal error: unexpected signal during runtime execution", // presubmably OOM turned into SIGBUS
"Out of memory: Kill process .* \\(syz-fuzzer\\)",
- //"INFO: lockdep is turned off", // printed by some sysrq that dumps scheduler state
+ "lowmemorykiller: Killing 'syz-fuzzer'",
+ //"INFO: lockdep is turned off", // printed by some sysrq that dumps scheduler state, but also on all lockdep reports
}...)
var suppressions []*regexp.Regexp
for _, s := range supp {