aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2022-01-03 20:45:36 +0100
committerDmitry Vyukov <dvyukov@google.com>2022-01-04 15:21:22 +0100
commit20221d9ec75cb2ef8966d20ca1847b4094991392 (patch)
tree12d96ef570ddb29990f9d94c217f0990828117f5 /pkg/report/linux.go
parente58c419b6b84dece123a22f9a6b6824e54e83c3d (diff)
pkg/report: stop parsing old KMSAN reports
Keeping backwards compatibility will complicate future changes. Since KMSAN is not upstream yet and is always rebased, we don't really need to keep parsing old reports.
Diffstat (limited to 'pkg/report/linux.go')
-rw-r--r--pkg/report/linux.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go
index 5ea3e9619..be8d47186 100644
--- a/pkg/report/linux.go
+++ b/pkg/report/linux.go
@@ -1259,11 +1259,6 @@ var linuxOopses = append([]*oops{
parts: []*regexp.Regexp{
parseStackTrace,
},
- parts2: []*regexp.Regexp{
- // For backwards compatibility - KMSAN used to include the Call Trace line.
- linuxCallTrace,
- parseStackTrace,
- },
skip: []string{"usb_submit_urb", "usb_start_wait_urb", "usb_bulk_msg", "usb_interrupt_msg", "usb_control_msg"},
},
noStackTrace: true,
@@ -1277,11 +1272,6 @@ var linuxOopses = append([]*oops{
parts: []*regexp.Regexp{
parseStackTrace,
},
- parts2: []*regexp.Regexp{
- // For backwards compatibility - KMSAN used to include the Call Trace line.
- linuxCallTrace,
- parseStackTrace,
- },
},
noStackTrace: true,
},