From 74c9d2523829e2f377ef7ee2e819a04ead202264 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 17 Jun 2025 10:04:42 +0200 Subject: pkg/report: parse the new WARNING format The format has been slightly changed lately and we have started to get duplicates of the exiting reports, e.g. https://syzkaller.appspot.com/bug?extid=077d9ebda84f426a6a1e Adjust the parsing rules to keep the resulting bug titles unchanged. --- pkg/report/linux.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 5cbaf38b1..35cdf0849 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1836,6 +1836,11 @@ var linuxOopses = append([]*oops{ fmt: "WARNING in %[3]v", stack: warningStackFmt(), }, + { + title: compile("WARNING: {{SRC}} at {{FUNC}}"), + fmt: "WARNING in %[3]v", + stack: warningStackFmt(), + }, { title: compile("WARNING: possible circular locking dependency detected"), report: compile("WARNING: possible circular locking dependency detected(?:.*\\n)+?.*is trying to acquire lock"), -- cgit mrf-deployment