From 323d1df5b08579bd6722fb6e486677ca9a2064fc Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 28 Aug 2024 10:36:54 +0200 Subject: pkg/report: ignore rhashtable_lookup frames Bugs are unlikely to be in the rhashtable code itself. Example: https://syzkaller.appspot.com/bug?extid=128aaac913636290e5a9 --- 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 216fcf18e..39825b2c9 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1322,6 +1322,7 @@ var linuxStackParams = &stackParams{ "__phys_addr", "__fortify_report", "cleanup_srcu_struct", + "rhashtable_lookup", }, corruptedLines: []*regexp.Regexp{ // Fault injection stacks are frequently intermixed with crash reports. -- cgit mrf-deployment