Skip to content

Commit 15e0e4c

Browse files
Ignore crashes likely caused by broken CPUs (#2660)
1 parent 3f33a9f commit 15e0e4c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

bugbot/crash/analyzer.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -760,6 +760,7 @@ def find_new_actionable_crashes(
760760
"_histogram.date",
761761
"_cardinality.install_time",
762762
"_cardinality.oom_allocation_size",
763+
"cpu_info",
763764
],
764765
"_results_number": 0,
765766
"_facets_size": 10000,
@@ -791,6 +792,13 @@ def handler(search_resp: dict, data: list):
791792
# The crash is not new, skip it.
792793
continue
793794

795+
if any(
796+
cpu_info["term"] == "family 6 model 183 stepping 1"
797+
for cpu_info in facets["cpu_info"]
798+
):
799+
# Ignore crashes that are likely caused by a broken CPU.
800+
continue
801+
794802
if any(
795803
reason["term"].startswith(io_error_prefix)
796804
for reason in facets["reason"]

0 commit comments

Comments
 (0)