diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-06-03 12:46:37 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-06-03 12:46:37 +0200 |
| commit | a5ce5de0aecba44015705788859d376e5a431ccd (patch) | |
| tree | 3c7f989e752e6fa441ef78134e33ce5364f4dc36 /pkg/report/linux.go | |
| parent | e8d36083fd01edc7cdec0cb817c5b89be9216a26 (diff) | |
pkg/report: update "using X in preemptible code" bug
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 4 |
1 files changed, 2 insertions, 2 deletions
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:"), |
