From 455eff3ca1b884ceceaeae46be97a48ead31f916 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 13 Sep 2020 08:57:55 +0200 Subject: pkg/report: skip rb tree functions in linux reports RB tree is just a container (like list we already skip), the bug is usually in the caller. Skip RB frames. The new titles are much more informative and have lower chances of collisions. --- pkg/report/linux.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 526ce6bca..912764495 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -824,6 +824,8 @@ var linuxStackParams = &stackParams{ "list_replace", "list_move", "list_splice", + "^rb_", + "^__rb_", "_indirect_thunk_", // retpolines "string", "pointer", -- cgit mrf-deployment