From d894f260cc3168c83c29ce26da44348f2f82f9b7 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 23 Oct 2019 10:38:16 +0200 Subject: pkg/report: better diffirentiate task hung reports (2) Add file missed in the previous commit. --- 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 5946f943a..5a7bb79d1 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -592,7 +592,7 @@ func linuxHangTaskFrameExtractor(frames []string) (string, string) { } } skip := []string{"sched", "_lock", "_slowlock", "down", "completion", "kthread", - "wait", "synchronize", "context_switch", "__switch_to"} + "wait", "synchronize", "context_switch", "__switch_to", "cancel_delayed_work"} nextFrame: for _, frame := range frames { for _, ignore := range skip { -- cgit mrf-deployment