• Home
  • Raw
  • Download

Lines Matching refs:report

4 package report  package
130 var report []byte
135 report = consoleReport
139 report = logReport
141 title, corrupted, format = extractDescription(report, oops, linuxStackParams)
145 oops.header, report, consoleReportReliable,
146 rep.StartPos, rep.StartPos+len(report), output))
158 rep.Report = append(rep.Report, report...)
160 rep.Corrupted, rep.CorruptedReason = ctx.isCorrupted(title, report, format)
383 func (ctx *linux) extractGuiltyFile(report []byte) string {
384 if linuxRcuStall.Match(report) {
390 if pos := bytes.Index(report, []byte(" apic_timer_interrupt+0x")); pos != -1 {
391 if file := ctx.extractGuiltyFileImpl(report[pos:]); file != "" {
396 return ctx.extractGuiltyFileImpl(report)
399 func (ctx *linux) extractGuiltyFileImpl(report []byte) string {
400 files := ctx.extractFiles(report)
449 func (ctx *linux) extractFiles(report []byte) []string {
450 matches := filenameRe.FindAll(report, -1)
459 func (ctx *linux) isCorrupted(title string, report []byte, format oopsFormat) (bool, string) {
461 if !format.noStackTrace && !bytes.Contains(report, []byte("Call Trace")) &&
462 !bytes.Contains(report, []byte("backtrace")) {
474 match := key.FindSubmatchIndex(report)
478 frames := bytes.Split(report[match[0]:], []byte{'\n'})
614report: compile("BUG: KASAN: ([a-z\\-]+) in {{FUNC}}(?:.*\\n)+?.*(Read|Write) of size (?:[0-9]+)"),
627 report: compile("BUG: KASAN: double-free or invalid-free in {{FUNC}}"),
703 report: compile("BUG: .*still has locks held!(?:.*\\n)+?.*{{PC}} +{{FUNC}}"),
708report: compile("BUG: lock held when returning to user space(?:.*\\n)+?.*leaving the kernel …
714report: compile("BUG: bad unlock balance detected!(?:.*\\n){0,15}?.*is trying to release lock(?:.*…
719 report: compile("BUG: held lock freed!(?:.*\\n)+?.*{{PC}} +{{FUNC}}"),
771 report: compile("BUG: workqueue leaked lock or atomic(?:.*\\n)+?" +
840report: compile("WARNING: lock held when returning to user space(?:.*\\n)+?.*leaving the ker…
856report: compile("WARNING: possible circular locking dependency detected(?:.*\\n)+?.*is trying to a…
861report: compile("WARNING: possible irq lock inversion dependency detected(?:.*\\n)+?.*just changed…
866report: compile("WARNING: SOFTIRQ-safe -> SOFTIRQ-unsafe lock order detected(?:.*\\n)+?.*is trying…
871report: compile("WARNING: possible recursive locking detected(?:.*\\n)+?.*is trying to acquire loc…
876report: compile("WARNING: inconsistent lock state(?:.*\\n)+?.*takes(?:.*\\n)+?.*at: (?:{{PC}} +)?{…
881 report: compile("WARNING: suspicious RCU usage(?:.*\n)+?.*?{{SRC}}"),
904report: compile("WARNING: bad unlock balance detected!(?:.*\\n){0,15}?.*is trying to release lock(…
909 report: compile("WARNING: held lock freed!(?:.*\\n)+?.*{{PC}} +{{FUNC}}"),
932report: compile("INFO: possible circular locking dependency detected \\](?:.*\\n)+?.*is trying to …
937report: compile("INFO: possible irq lock inversion dependency detected \\](?:.*\\n)+?.*just change…
942report: compile("INFO: SOFTIRQ-safe -> SOFTIRQ-unsafe lock order detected \\](?:.*\\n)+?.*is tryin…
947report: compile("INFO: possible recursive locking detected \\](?:.*\\n)+?.*is trying to acquire lo…
952report: compile("INFO: inconsistent lock state \\](?:.*\\n)+?.*takes(?:.*\\n)+?.*at: {{PC}} +{{FUN…
990 report: compile("INFO: suspicious RCU usage(?:.*\n)+?.*?{{SRC}}"),
1035 report: compile("Unable to handle kernel paging request(?:.*\\n)+?.*PC is at {{FUNC}}"),
1147 report: compile("divide error: (?:.*\\n)+?.*RIP: [0-9]+:(?:{{PC}} +{{PC}} +)?{{FUNC}}"),
1158 report: compile("invalid opcode: (?:.*\\n)+?.*RIP: [0-9]+:{{PC}} +{{PC}} +{{FUNC}}"),