diff options
| author | Andrey Konovalov <andreyknvl@google.com> | 2019-08-22 14:42:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-22 14:42:17 +0200 |
| commit | 0ab81da2cfd823442c235f2dd1896b51b662b115 (patch) | |
| tree | 9e37c5759466d98f2256dfa328f5ea8a90fae433 /pkg | |
| parent | 984250d5080e0bf455725ff96551e35c3ae59457 (diff) | |
pkg/report: revert bucketing MAX_STACK_TRACE_ENTRIES reports (#1357)
MAX_STACK_TRACE_ENTRIES crash reports caused by a particular issues can come
from any part of the kernel, so bucketing them based on the stack trace is
pointless and only creates duplicate bug reports.
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/report/linux.go | 5 | ||||
| -rw-r--r-- | pkg/report/testdata/linux/report/403 | 2 | ||||
| -rw-r--r-- | pkg/report/testdata/linux/report/404 | 2 |
3 files changed, 2 insertions, 7 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index fa1299c22..23348c95c 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -967,11 +967,6 @@ var linuxOopses = []*oops{ }, }, { - title: compile("BUG: MAX_STACK_TRACE_ENTRIES too low!"), - fmt: "BUG: MAX_STACK_TRACE_ENTRIES too low in %[1]v", - stack: warningStackFmt("save_trace", "mark_lock"), - }, - { title: compile("BUG: using __this_cpu_([a-z_]+)\\(\\) in preemptible"), fmt: "BUG: using __this_cpu_%[1]v() in preemptible code in %[2]v", stack: &stackFmt{ diff --git a/pkg/report/testdata/linux/report/403 b/pkg/report/testdata/linux/report/403 index b287a56ba..dba6dfede 100644 --- a/pkg/report/testdata/linux/report/403 +++ b/pkg/report/testdata/linux/report/403 @@ -1,4 +1,4 @@ -TITLE: BUG: MAX_STACK_TRACE_ENTRIES too low in ucma_close +TITLE: BUG: MAX_STACK_TRACE_ENTRIES too low! [ 185.416858][ T809] BUG: MAX_STACK_TRACE_ENTRIES too low! [ 185.422408][ T809] turning off the locking correctness validator. diff --git a/pkg/report/testdata/linux/report/404 b/pkg/report/testdata/linux/report/404 index e7163a884..ce9621f9c 100644 --- a/pkg/report/testdata/linux/report/404 +++ b/pkg/report/testdata/linux/report/404 @@ -1,4 +1,4 @@ -TITLE: BUG: MAX_STACK_TRACE_ENTRIES too low in scsi_remove_host +TITLE: BUG: MAX_STACK_TRACE_ENTRIES too low! [ 3167.402179][T32668] BUG: MAX_STACK_TRACE_ENTRIES too low! [ 3167.407738][T32668] turning off the locking correctness validator. |
