From 2873954bda817ac39a3bcbdc3962a20d021874db Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Wed, 19 Jun 2019 16:03:01 +0200 Subject: pkg/report: add KMSAN kernel-usb-infoleak title regex --- pkg/report/linux.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pkg') 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 @@ -855,6 +855,12 @@ var linuxOopses = []*oops{ fmt: "KASAN: %[1]v", 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}}"), -- cgit mrf-deployment