diff options
| author | Darby Sauter <darbysauter@gmail.com> | 2021-02-23 20:11:53 -0800 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-02-26 10:33:47 +0100 |
| commit | 86d368fe15d1ec06cda9fedc5faf2e7adb034eb8 (patch) | |
| tree | f3764c40731fa70192672b530a50be11e4a4124a /pkg/report/linux.go | |
| parent | 45491369bd1b31f0bfd01cf9f5993b21670a5753 (diff) | |
pkg/report: added extra ignore cases for android
Ignore cases that match "INFO:" that were not important.
These occured on Pixel3XL running Android 11.
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index ada85e910..9eb6c0972 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1546,6 +1546,8 @@ var linuxOopses = append([]*oops{ compile("_INFO::"), // Android can print this during boot. compile("INFO: sys_.* is not present in /proc/kallsyms"), // pkg/host output in debug mode compile("INFO: no syscalls can create resource"), // pkg/host output in debug mode + compile("CAM_INFO:"), // Android prints this. + compile("rmt_storage:INFO:"), // Android prints this. }, }, { |
