]> Cypherpunks repositories - gostls13.git/commit
runtime: don't hold scheduler lock when calling timeSleepUntil
authorIan Lance Taylor <iant@golang.org>
Wed, 6 Nov 2019 00:05:09 +0000 (16:05 -0800)
committerIan Lance Taylor <iant@golang.org>
Wed, 6 Nov 2019 15:46:26 +0000 (15:46 +0000)
commitb50fcc88e93eb41a64ff80d74aae36c531c5fe60
tree2f1d3499a08b2ef30c5a66d8782cb38b0c109780
parentcf3be9bbca2f90d87283ae69322616b43702a2f7
runtime: don't hold scheduler lock when calling timeSleepUntil

Otherwise, we can get into a deadlock: sysmon takes the scheduler lock
and calls timeSleepUntil which takes each P's timer lock. Simultaneously,
some P calls runtimer (holding the P's own timer lock) which wakes up
the scavenger, calling goready, calling wakep, calling startm, getting
the scheduler lock. Now the sysmon thread is holding the scheduler lock
and trying to get a P's timer lock, while some other thread running on
that P is holding the P's timer lock and trying to get the scheduler lock.

So change sysmon to call timeSleepUntil without holding the scheduler
lock, and change timeSleepUntil to use allpLock, which is only held for
limited periods of time and should never compete with timer locks.

This hopefully

Fixes #35375

At least it should fix the linux-arm64-packet builder problems,
which occurred more reliably as that system has GOMAXPROCS == 96,
giving a lot more scope for this deadlock.

Change-Id: I7a7917daf7a4882e0b27ca416e4f6300cfaaa774
Reviewed-on: https://go-review.googlesource.com/c/go/+/205558
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
src/runtime/proc.go
src/runtime/time.go