aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-09-04 10:34:39 +0200
committerDmitry Vyukov <dvyukov@google.com>2019-09-04 10:35:20 +0200
commitb0e5f924b51be09e68d13aef1030435c14c501ea (patch)
tree243aedc0370c3b52cb196ccbb640c8a814961fc6 /pkg/report/linux.go
parent12381952e3839f1bb8a6ff65b83e41a0c898d130 (diff)
pkg/report: update ODEBUG warning format
It seems something has changed in the kernel again...
Diffstat (limited to 'pkg/report/linux.go')
-rw-r--r--pkg/report/linux.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go
index f11845c21..16c71af74 100644
--- a/pkg/report/linux.go
+++ b/pkg/report/linux.go
@@ -1031,12 +1031,12 @@ var linuxOopses = []*oops{
[]byte("WARNING:"),
[]oopsFormat{
{
- title: compile("WARNING: .*lib/debugobjects\\.c.* debug_print_object"),
+ title: compile("WARNING: .*lib/debugobjects\\.c.* (?:debug_print|debug_check)"),
fmt: "WARNING: ODEBUG bug in %[1]v",
// Skip all users of ODEBUG as well.
stack: warningStackFmt("debug_", "rcu", "hrtimer_", "timer_",
"work_", "percpu_", "kmem_", "slab_", "kfree", "vunmap",
- "vfree", "__free_"),
+ "vfree", "__free_", "debug_check"),
},
{
title: compile("WARNING: .*mm/usercopy\\.c.* usercopy_warn"),