aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-09-12 18:39:19 +0200
committerAleksandr Nogikh <nogikh@google.com>2023-09-13 07:31:37 +0000
commit0b6a67ac4b0dc26f43030c5edd01c9175f13b784 (patch)
tree5f0ea239624f37559ff7b5a70d1c1a0143077f86
parent04dd42ba137ff1f5fa6b2193a4b529b186051c1c (diff)
syz-ci: ignore one more bisection result
The "devlink: bump the instance index directly when iterating" commit has already appeared in too many invalid fix bisection results.
-rw-r--r--syz-ci/jobs.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/syz-ci/jobs.go b/syz-ci/jobs.go
index 662361fd2..b2d996cf4 100644
--- a/syz-ci/jobs.go
+++ b/syz-ci/jobs.go
@@ -580,6 +580,10 @@ var ignoredCommits = []string{
// triggering USB bugs, which ends up being the guilty commit during bisection
// for USB bugs introduced before it.
"f2c2e717642c66f7fe7e5dd69b2e8ff5849f4d10",
+ // Commit "devlink: bump the instance index directly when iterating" has likely
+ // fixed some frequent task hung, which skews fix bisection results.
+ // TODO: consider backporting it during bisection itself.
+ "d772781964415c63759572b917e21c4f7ec08d9f",
}
func (jp *JobProcessor) ignoreBisectCommit(commit *vcs.Commit) bool {