diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-06-08 09:33:19 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-06-08 09:34:02 +0200 |
| commit | 6db75fefbe6ff3b0e033b5f4eb5cb104452b6a0c (patch) | |
| tree | bed1bf89221dd06f8b7971399186b0c30ef8524f /pkg/report/linux.go | |
| parent | 1319a7da099fef01a21caa7c15bd98dcddd3acb3 (diff) | |
pkg/report: add another format for null RIP
Kernel keeps inventing new formats...
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 c6010d3fb..a2ac1f730 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -509,7 +509,7 @@ var ( executorBinRe = regexp.MustCompile(`syz-executor[0-9]+((/|:)[0-9]+)?`) syzkallerBinRe = regexp.MustCompile(`syzkaller[0-9]+((/|:)[0-9]+)?`) linuxRcuStall = compile("INFO: rcu_(?:preempt|sched|bh) (?:self-)?detected(?: expedited)? stall") - linuxRipFrame = compile(`IP: (?:(?:[0-9]+:)?(?:{{PC}} +){0,2}{{FUNC}}|[0-9]+:0x[0-9a-f]+|(?:[0-9]+:)?{{PC}} +\[< *\(null\)>\] +\(null\))`) + linuxRipFrame = compile(`IP: (?:(?:[0-9]+:)?(?:{{PC}} +){0,2}{{FUNC}}|[0-9]+:0x[0-9a-f]+|(?:[0-9]+:)?{{PC}} +\[< *\(null\)>\] +\(null\)|[0-9]+: +\(null\))`) ) var linuxCorruptedTitles = []*regexp.Regexp{ |
