From a56861338db0dfa2a57fef7156de565a2a6ae99e Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 17 Jun 2025 11:36:15 +0200 Subject: 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. --- 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 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", -- cgit mrf-deployment