diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-01-02 18:38:22 +0100 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-01-03 11:00:09 +0000 |
| commit | f3558dbf032eab2b77c1cb11b9ce2baffe7838d3 (patch) | |
| tree | 8f78ba1b7f7a29c78e7316ee21ed0a23267981a8 /pkg/report/linux.go | |
| parent | 96d578a30a157fa6dc4c66f95f4cab953fbebfb7 (diff) | |
pkg/report: ignore _INFO:
These can lead to false positives when BPF debugging data is printed,
e.g.
[ 461.316169][ T3168] [U] [1] INVALID BTF_INFO:72000001
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index ed12e3130..dea523b9c 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -2079,11 +2079,10 @@ var linuxOopses = append([]*oops{ compile("INFO: NMI handler"), compile("INFO: recovery required on readonly filesystem"), compile("(handler|interrupt).*took too long"), - 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. + compile("_INFO:"), // To filter out "INVALID BTF_INFO:NUM". }, crash.UnknownType, }, |
