From d18522a2874ab58c83a29ee79e52f33912e00626 Mon Sep 17 00:00:00 2001 From: Andrew Donnellan Date: Fri, 11 Oct 2019 10:44:13 +1100 Subject: pkg/report: Add regexes for kernel data access BUG on ppc64le Signed-off-by: Andrew Donnellan --- pkg/report/linux.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkg') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 600527d90..bb98e017c 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -877,7 +877,7 @@ var linuxOopses = []*oops{ noStackTrace: true, }, { - title: compile("BUG: (?:unable to handle kernel paging request|unable to handle page fault for address)"), + title: compile("BUG: (?:unable to handle kernel paging request|unable to handle page fault for address|Unable to handle kernel data access)"), fmt: "BUG: unable to handle kernel paging request in %[1]v", stack: &stackFmt{ parts: []*regexp.Regexp{ @@ -888,7 +888,7 @@ var linuxOopses = []*oops{ }, }, { - title: compile("BUG: (?:unable to handle kernel NULL pointer dereference|kernel NULL pointer dereference)"), + title: compile("BUG: (?:unable to handle kernel NULL pointer dereference|kernel NULL pointer dereference|Kernel NULL pointer dereference)"), fmt: "BUG: unable to handle kernel NULL pointer dereference in %[1]v", stack: &stackFmt{ parts: []*regexp.Regexp{ @@ -901,7 +901,7 @@ var linuxOopses = []*oops{ { // Sometimes with such BUG failures, the second part of the header doesn't get printed // or gets corrupted, because kernel prints it as two separate printk() calls. - title: compile("BUG: unable to handle kernel"), + title: compile("BUG: (?:unable to handle kernel|Unable to handle kernel)"), fmt: "BUG: unable to handle kernel", corrupted: true, }, -- cgit mrf-deployment