From aedf5331532b3e25e24f8275ddf53f6905199201 Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Fri, 13 Jan 2023 15:07:48 +0100 Subject: pkg/report: skip netlink_ack and netlink_rcv_skb Two KMSAN reports belonging to different subsystems ended up being merged together because they both had netlink_ack in their origin. Let's skip this frame as well as netlink_rcv_skb, which is common among several network protocols. --- pkg/report/linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 7f1910e55..0cca28424 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1339,7 +1339,7 @@ var linuxOopses = append([]*oops{ compile("(Local variable .* created at:|Uninit was created at:)"), parseStackTrace, }, - skip: []string{"alloc_skb"}, + skip: []string{"alloc_skb", "netlink_ack", "netlink_rcv_skb"}, }, noStackTrace: true, }, -- cgit mrf-deployment