From 3f4f3d5ec96cd56ec57720b237e2c8925035c8e4 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 4 Jun 2018 10:04:15 +0200 Subject: pkg/report: ignore INFO messages about long interrupts --- pkg/report/linux.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 172a75b4d..51542326a 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1011,6 +1011,7 @@ var linuxOopses = []*oops{ 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 + compile("(handler|interrupt).*took too long"), }, }, &oops{ -- cgit mrf-deployment