]> Cypherpunks repositories - gostls13.git/commit
runtime: drain local runq when dedicated mark worker runs
authorAustin Clements <austin@google.com>
Fri, 23 Jun 2017 21:54:39 +0000 (17:54 -0400)
committerAustin Clements <austin@google.com>
Mon, 26 Jun 2017 19:25:26 +0000 (19:25 +0000)
commit489620d8787a988aea4a083803608b55703f78a6
treea4d1240289826f495903b71b04d40ac72352f9be
parent6d594342c6fbbdc3673748b00bb8f2faaf63a0a4
runtime: drain local runq when dedicated mark worker runs

When the dedicated mark worker runs, the scheduler won't run on that P
again until GC runs out of mark work. As a result, any goroutines in
that P's local run queue are stranded until another P steals them. In
a normally operating system this may take a long time, and in a 100%
busy system, the scheduler never attempts to steal from another P.

Fix this by draining the local run queue into the global run queue if
the dedicated mark worker has run for long enough. We don't do this
immediately upon scheduling the dedicated mark worker in order to
avoid destroying locality if the mark worker runs for a short time.
Instead, the scheduler delays draining the run queue until the mark
worker gets its first preemption request (and otherwise ignores the
preemption request).

Fixes #20011.

Change-Id: I13067194b2f062b8bdef25cb75e4143b7fb6bb73
Reviewed-on: https://go-review.googlesource.com/46610
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Rick Hudson <rlh@golang.org>
src/runtime/mgc.go