From bfcab33d5ef38324342c0348a49caf197e386dd3 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 15 Nov 2022 09:00:23 +0100 Subject: pkg/report: skip queue_work frames We have lots of report "in queue_work". They are usually due to the caller bugs. Currently this leads to glueing of unrelated bugs together. Skip queue_work to prevent this glueing. --- pkg/report/linux.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 6a00a0785..a36711936 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1169,6 +1169,7 @@ var linuxStackParams = &stackParams{ "flush_workqueue", "drain_workqueue", "destroy_workqueue", + "queue_work", "finish_wait", "kthread_stop", "kobject_", -- cgit mrf-deployment