From 3b7ad24d6cd0566c2f307ab62c78ffdd4f76de3d Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 8 Nov 2017 17:27:42 +0100 Subject: syz-manager/mgrconfig: add another OOM suppression If sshd was killed, we will get "lost connection". --- syz-manager/mgrconfig/mgrconfig.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/syz-manager/mgrconfig/mgrconfig.go b/syz-manager/mgrconfig/mgrconfig.go index f29951e15..87562c3dd 100644 --- a/syz-manager/mgrconfig/mgrconfig.go +++ b/syz-manager/mgrconfig/mgrconfig.go @@ -247,7 +247,9 @@ func parseSuppressions(cfg *Config) error { "fatal error: unexpected signal during runtime execution", // presubmably OOM turned into SIGBUS "signal SIGBUS: bus error", // presubmably OOM turned into SIGBUS "Out of memory: Kill process .* \\(syz-fuzzer\\)", + "Out of memory: Kill process .* \\(sshd\\)", "lowmemorykiller: Killing 'syz-fuzzer'", + "lowmemorykiller: Killing 'sshd'", }...) for _, s := range supp { re, err := regexp.Compile(s) -- cgit mrf-deployment