From 85d38101ef4601cb40f65406822b73581e5c5be1 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 16 Apr 2018 21:23:32 +0200 Subject: pkg/report: ignore pkg/host debug output --- pkg/report/linux.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pkg') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 1b59a8186..f3ecee667 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -789,6 +789,8 @@ var linuxOopses = []*oops{ compile("ODEBUG:"), // Android prints this sometimes during boot. compile("Boot_DEBUG:"), + // pkg/host output in debug mode. + compile("BUG: no syscalls can create resource"), }, }, &oops{ @@ -997,6 +999,8 @@ var linuxOopses = []*oops{ compile("INFO: Stall ended before state dump start"), compile("INFO: NMI handler .* took too long to run"), compile("_INFO::"), // Android can print this during boot. + compile("INFO: sys_.* is not present in /proc/kallsyms"), // pkg/host output in debug mode + compile("INFO: no syscalls can create resource"), // pkg/host output in debug mode }, }, &oops{ -- cgit mrf-deployment