diff options
| author | Alexander Potapenko <glider@google.com> | 2023-01-13 15:07:48 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2023-01-17 07:55:41 +0100 |
| commit | aedf5331532b3e25e24f8275ddf53f6905199201 (patch) | |
| tree | 02fa0bb1efb4bee5240793d092f388e109503d80 /pkg/report/linux.go | |
| parent | a63719e71f9e7c2496a8eef09aa58118deb0c0bc (diff) | |
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.
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
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, }, |
