From 147c5c8528fc87af82b749631b2a7048d37bd1df Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Fri, 20 Jun 2025 12:47:16 +0200 Subject: pkg/report: use crash.KMSAN We have crash.KMSAN definition that is not used. --- pkg/report/linux.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkg/report') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 724445b36..782cb9032 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1499,6 +1499,7 @@ var linuxOopses = append([]*oops{ skip: []string{"alloc_skb", "usb_submit_urb", "usb_start_wait_urb", "usb_bulk_msg", "usb_interrupt_msg", "usb_control_msg"}, }, noStackTrace: true, + reportType: crash.KMSAN, }, { title: compile("BUG: KMSAN:"), @@ -1516,6 +1517,7 @@ var linuxOopses = append([]*oops{ skip: []string{"alloc_skb", "netlink_ack", "netlink_rcv_skb"}, }, noStackTrace: true, + reportType: crash.KMSAN, }, { title: compile("BUG: KCSAN: data-race"), -- cgit mrf-deployment