diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2022-07-11 09:11:57 +0000 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2022-07-11 11:31:58 +0200 |
| commit | f3f217ff1d92c75c6f1471fbc5f18d31ac4941aa (patch) | |
| tree | efed189712f1c41c4a5ae5d2547b1efe96469163 /pkg/report/linux.go | |
| parent | b5765a153856746a5e7b74ea11751342337b0370 (diff) | |
pkg/report: ignore `missed to adjust virtual screen size` messages
Syzbot erroneously treats them as normal WARNINgs and creates lots of
duplicate bugs.
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 0c76170fc..d69370dcd 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1729,6 +1729,7 @@ var linuxOopses = append([]*oops{ compile("WARNING: [Tt]he mand mount option (is being|has been) deprecated"), compile("WARNING: Unsupported flag value\\(s\\) of 0x%x in DT_FLAGS_1"), // printed when glibc is dumped compile("WARNING: Unprivileged eBPF is enabled with eIBRS"), + compile(`WARNING: fbcon: Driver '(.*)' missed to adjust virtual screen size (\((?:\d+)x(?:\d+) vs\. (?:\d+)x(?:\d+)\))`), }, }, { |
