From db5eff3a804d414190822b409fa4b4592c121cc1 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 4 Sep 2016 11:38:00 +0200 Subject: config: add another OOM message to suppressions --- config/config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'config') 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 { -- cgit mrf-deployment