diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2024-10-29 18:48:24 +0100 |
|---|---|---|
| committer | Alexander Potapenko <glider@google.com> | 2024-10-30 09:05:42 +0000 |
| commit | f3a007676454bf9e9ca78bebb54ee05f03de2403 (patch) | |
| tree | f0874ab71c92e4319e556bd36275b667b6fab7f8 /pkg | |
| parent | 66aeb999f37ab41e95f08d1da821200313f71342 (diff) | |
pkg/report: ignore warnings printed by __ext4_msg
These are just warnings to the system administrator. Ignore them during
fuzzing.
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/report/linux.go | 1 | ||||
| -rw-r--r-- | pkg/report/testdata/linux/report/728 | 7 |
2 files changed, 8 insertions, 0 deletions
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, }, diff --git a/pkg/report/testdata/linux/report/728 b/pkg/report/testdata/linux/report/728 new file mode 100644 index 000000000..ef9fecfcc --- /dev/null +++ b/pkg/report/testdata/linux/report/728 @@ -0,0 +1,7 @@ +TITLE: + + +EXT4-fs: Warning: mounting with an experimental mount option 'dioread_nolock' for blocksize < PAGE_SIZE +EXT4-fs (loop4): 1 truncate cleaned up +EXT4-fs (loop4): mounted filesystem without journal. Quota mode: writeback. + |
