From bf45aa5363c1f8db29b7c6fe9d086560857b0db4 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 4 Aug 2018 17:38:48 +0200 Subject: pkg/report: skip more spinlock frames Currently this report is named: "general protection fault in perf_trace_lock" which is bad. --- pkg/report/linux.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 03c9e4a4a..ee0cff453 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -548,9 +548,11 @@ var linuxStackParams = &stackParams{ "debug_object", "work_is_static_object", "lockdep", + "perf_trace", "lock_acquire", "lock_release", - "raw_spin_lock", + "spin_lock", + "spin_unlock", "raw_read_lock", "raw_write_lock", "down_read", -- cgit mrf-deployment