From d4611817041647831162ed6dedfa7bc0ad160387 Mon Sep 17 00:00:00 2001 From: Pimyn Girgis Date: Mon, 1 Dec 2025 11:24:45 +0000 Subject: pkg/report: ignore the fast_dput/dput frames fast_dput and dput are too generic. This causes several different bugs to be merged into one. See: https://syzkaller.appspot.com/bug?extid=b74150fd2ef40e716ca2 Ingore the fast_dput/dput frames when selecting the bug title. --- 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 e8f85cef9..c61b2bc37 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1398,6 +1398,8 @@ var linuxStackParams = &stackParams{ "__timer_delete_sync", "sk_stop_timer_sync", "__mod_timer", + "fast_dput", + "dput", }, corruptedLines: []*regexp.Regexp{ // Fault injection stacks are frequently intermixed with crash reports. -- cgit mrf-deployment