aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
authorPimyn Girgis <pimyn@google.com>2025-12-01 11:24:45 +0000
committerTahuti <pimyn@google.com>2025-12-01 13:35:11 +0000
commitd4611817041647831162ed6dedfa7bc0ad160387 (patch)
treec812aa348ee11de3bfa7579d52fdbb81d8086a82 /pkg/report/linux.go
parent3887d60d86f72cd0c697fb996e1936a991bfc383 (diff)
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.
Diffstat (limited to 'pkg/report/linux.go')
-rw-r--r--pkg/report/linux.go2
1 files changed, 2 insertions, 0 deletions
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.