From b0e5f924b51be09e68d13aef1030435c14c501ea Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 4 Sep 2019 10:34:39 +0200 Subject: pkg/report: update ODEBUG warning format It seems something has changed in the kernel again... --- pkg/report/linux.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/report/linux.go') 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"), -- cgit mrf-deployment