diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2022-05-23 15:09:16 +0000 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2022-05-24 09:04:50 +0200 |
| commit | d9a6eb8d3cd646fec124aa17e8f44c628ab4303d (patch) | |
| tree | 7fb3d4908e64a978ee32cc76b573145e547180ff /pkg/report/linux.go | |
| parent | e7f9308d43198223b192f94a7030f9ebdf92e551 (diff) | |
pkg/report: ignore general protection faults from the userspace
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index e152118fa..c67e5458f 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1883,7 +1883,9 @@ var linuxOopses = append([]*oops{ }, }, }, - []*regexp.Regexp{}, + []*regexp.Regexp{ + compile(`general protection fault .* error:\d+ in `), + }, }, { []byte("stack segment: "), |
