aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2021-01-22 10:52:49 +0100
committerDmitry Vyukov <dvyukov@google.com>2021-01-22 20:15:21 +0100
commit4080af966ce878a69484ce2c87e8cd50b8f9b5a2 (patch)
treebce51e1642e2a796ebc77b658b8752d3acb5a02c /pkg/report/linux.go
parent28ba85cf243265596152e5550e80394d4a066997 (diff)
pkg/report: ignore kthread more precisely in stall reports
Diffstat (limited to 'pkg/report/linux.go')
-rw-r--r--pkg/report/linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go
index c01afe235..e3242c602 100644
--- a/pkg/report/linux.go
+++ b/pkg/report/linux.go
@@ -648,7 +648,7 @@ var linuxStallAnchorFrames = []*regexp.Regexp{
compile("hrtimer_run"),
compile("run_ksoftirqd"),
compile("smpboot_thread_fn"),
- compile("kthread"),
+ compile("^kthread$"),
compile("start_secondary"),
compile("cpu_startup_entry"),
compile("ret_from_fork"),