diff options
| author | Andrey Konovalov <andreyknvl@google.com> | 2019-06-19 16:03:01 +0200 |
|---|---|---|
| committer | Andrey Konovalov <andreyknvl@gmail.com> | 2019-06-24 12:58:49 +0200 |
| commit | 2873954bda817ac39a3bcbdc3962a20d021874db (patch) | |
| tree | e9d70a64ee901477b347b7cf83416e3e549affd8 /pkg | |
| parent | 76369713709825bbc37d6dd0710e68b4d3db24f6 (diff) | |
pkg/report: add KMSAN kernel-usb-infoleak title regex
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/report/linux.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 01a73aefb..dc2a17a06 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -856,6 +856,12 @@ var linuxOopses = []*oops{ corrupted: true, }, { + title: compile("BUG: KMSAN: kernel-usb-infoleak"), + report: compile("BUG: KMSAN: kernel-usb-infoleak in {{FUNC}}"), + fmt: "KMSAN: kernel-usb-infoleak in %[2]v", + stack: warningStackFmt("usb_submit_urb", "usb_start_wait_urb", "usb_bulk_msg", "usb_interrupt_msg", "usb_control_msg"), + }, + { title: compile("BUG: KMSAN:"), report: compile("BUG: KMSAN: ([a-z\\-]+) in {{FUNC}}"), fmt: "KMSAN: %[1]v in %[3]v", |
