From c8823b7eb4f2349bc37d14741fbfe734648fce02 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 25 Oct 2021 12:23:36 +0200 Subject: pkg/report: fix parsing of syscall entry points gcc and clang somehow print different frames around syscall entry. sys_-prefixed names is what currently produced for gcc (more common) and we have lots of existing reports with sys_ prefix. So make the clang frames parsed the same way as gcc frames are currently parsed. --- 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 895760b8c..0cc43bcf8 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1160,7 +1160,7 @@ var linuxStackParams = &stackParams{ "____sys_", "___sys_", "__sys_", - "__se_sys_", + "__se_", "__do_sys_", "compat_SYSC_", "compat_SyS_", -- cgit mrf-deployment