Skip to content

Commit

Permalink
pkg/report: add a note about an existing suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
dvyukov committed Jan 28, 2020
1 parent 56cd6c9 commit 0692a58
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkg/report/linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -1328,6 +1328,13 @@ var linuxOopses = append([]*oops{
[]*regexp.Regexp{
compile("INFO: lockdep is turned off"),
compile("INFO: Stall ended before state dump start"),
// This is printed by nmi_check_duration(), the message simply states
// that an interrupt took too long. It happens a lot in qemu,
// and the messages are frequently corrupted (intermixed with other
// kernel output as they are printed from NMI) and are not matched
// against this suppression. There is a debug var that holds the current
// max duration, so potentially this can be fixed with:
// echo 10000000000 > /sys/kernel/debug/x86/nmi_longest_ns
compile("INFO: NMI handler"),
compile("INFO: recovery required on readonly filesystem"),
compile("(handler|interrupt).*took too long"),
Expand Down

0 comments on commit 0692a58

Please sign in to comment.