From f3a007676454bf9e9ca78bebb54ee05f03de2403 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 29 Oct 2024 18:48:24 +0100 Subject: pkg/report: ignore warnings printed by __ext4_msg These are just warnings to the system administrator. Ignore them during fuzzing. --- 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 ca27c00e0..883c0d36c 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1951,6 +1951,7 @@ var linuxOopses = append([]*oops{ compile(`WARNING: fbcon: Driver '(.*)' missed to adjust virtual screen size (\((?:\d+)x(?:\d+) vs\. (?:\d+)x(?:\d+)\))`), compile(`WARNING: See https.* for mitigation options.`), compile(`WARNING: kernel not compiled with CPU_SRSO`), + compile(`EXT4-[Ff][Ss](?: \(.*\))?:`), // printed in __ext4_msg }, crash.Warning, }, -- cgit mrf-deployment