diff options
| author | Andrew Donnellan <ajd@linux.ibm.com> | 2019-10-11 10:44:13 +1100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-10-14 11:17:24 +0200 |
| commit | d18522a2874ab58c83a29ee79e52f33912e00626 (patch) | |
| tree | e3fba43c433db9f09b6d7bc86c9b05fcc44bf6e5 /pkg | |
| parent | 05c1b983564f27b557e9a1ef761d7c8c2a4b36d6 (diff) | |
pkg/report: Add regexes for kernel data access BUG on ppc64le
Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/report/linux.go | 6 |
1 files changed, 3 insertions, 3 deletions
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, }, |
