From 4080af966ce878a69484ce2c87e8cd50b8f9b5a2 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 22 Jan 2021 10:52:49 +0100 Subject: pkg/report: ignore kthread more precisely in stall reports --- pkg/report/linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/report/linux.go') 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"), -- cgit mrf-deployment