diff options
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index f560df636..ce7727869 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -413,13 +413,17 @@ var linuxOopses = []*oops{ "BUG: Dentry still in use [unmount of %[1]v]", }, { - compile("BUG: Bad page state .*"), + compile("BUG: Bad page state.*"), "BUG: Bad page state", }, { - compile("BUG: spinlock bad magic .*"), + compile("BUG: spinlock bad magic.*"), "BUG: spinlock bad magic", }, + { + compile("BUG: workqueue lockup.*"), + "BUG: workqueue lockup", + }, }, []*regexp.Regexp{ // Android prints this sometimes during boot. |
