From a5ce5de0aecba44015705788859d376e5a431ccd Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 3 Jun 2020 12:46:37 +0200 Subject: pkg/report: update "using X in preemptible code" bug --- 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 02502b1c8..1f5f97b35 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1075,8 +1075,8 @@ var linuxOopses = append([]*oops{ }, }, { - title: compile("BUG: using __this_cpu_([a-z_]+)\\(\\) in preemptible"), - fmt: "BUG: using __this_cpu_%[1]v() in preemptible code in %[2]v", + title: compile("BUG: using ([a-z_]+)\\(\\) in preemptible"), + fmt: "BUG: using %[1]v() in preemptible code in %[2]v", stack: &stackFmt{ parts: []*regexp.Regexp{ compile("Call Trace:"), -- cgit mrf-deployment