aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2025-06-17 11:36:15 +0200
committerAleksandr Nogikh <nogikh@google.com>2025-06-17 12:00:35 +0000
commita56861338db0dfa2a57fef7156de565a2a6ae99e (patch)
tree2bedac03e9ba51593ec26c91860f1b3711efdb62 /pkg/report/linux.go
parent417d98fa2e5e60a0ed623a4e406918c5cacfd500 (diff)
pkg/report: ignore the __alloc_frozen_pages_noprof frame
Even though __alloc_frozen_pages_noprof has the WARN_ON, the actual problem lies in how malloc was called down the stacktrace. This leads to several different bugs being merged into one: https://syzkaller.appspot.com/bug?extid=03fb58296859d8dbab4d Ingore the __alloc_frozen_pages_noprof frame when selecting the bug title.
Diffstat (limited to 'pkg/report/linux.go')
-rw-r--r--pkg/report/linux.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go
index 35cdf0849..153e71ce2 100644
--- a/pkg/report/linux.go
+++ b/pkg/report/linux.go
@@ -1138,6 +1138,7 @@ var linuxStackParams = &stackParams{
"krealloc",
"kmem_cache",
"allocate_slab",
+ "__alloc_frozen_pages_noprof",
"folio_(?:alloc|unlock)",
"filemap_alloc_folio",
"__filemap_get_folio",