aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/report/linux.go')
-rw-r--r--pkg/report/linux.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go
index e67806584..0063ae93d 100644
--- a/pkg/report/linux.go
+++ b/pkg/report/linux.go
@@ -1039,6 +1039,7 @@ var linuxStackParams = &stackParams{
"report_bug",
"fixup_bug",
"print_report",
+ "print_usage_bug",
"do_error",
"invalid_op",
"_trap",
@@ -1707,7 +1708,13 @@ var linuxOopses = append([]*oops{
{
title: compile("WARNING: inconsistent lock state"),
report: compile("WARNING: inconsistent lock state(?:.*\\n)+?.*takes(?:.*\\n)+?.*at: (?:{{PC}} +)?{{FUNC}}"),
- fmt: "inconsistent lock state in %[1]v",
+ fmt: "inconsistent lock state in %[2]v",
+ stack: &stackFmt{
+ parts: []*regexp.Regexp{
+ linuxCallTrace,
+ parseStackTrace,
+ },
+ },
},
{
title: compile("WARNING: suspicious RCU usage"),