You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://go-review.googlesource.com/11561 introduced gcResetMarkState. This is needed in the same places gcResetGState is needed, but merging them requires shuffling some code around, so it was avoided for the freeze. We should merge these and, more generally, think harder about global state management in the GC, since there are an awful lot of "reset X state" functions.
Currently we fail to reset the live heap accounting state before the
checkmark mark and before the gctrace=2 extra mark. As a result, if
either are enabled, at the end of GC it thinks there are 0 bytes of
live heap, which causes the GC controller to initiate a new GC
immediately, regardless of the true heap size.
Fix this by factoring this state reset into a function and calling it
before all three possible marks.
This function should be merged with gcResetGState, but doing so
requires some additional cleanup, so it will wait for after the
freeze. Filed #11427 for this cleanup.
Fixes#10492.
Change-Id: Ibe46348916fc8368fac6f086e142815c970a6f4d
Reviewed-on: https://go-review.googlesource.com/11561
Reviewed-by: Russ Cox <rsc@golang.org>
https://go-review.googlesource.com/11561 introduced gcResetMarkState. This is needed in the same places gcResetGState is needed, but merging them requires shuffling some code around, so it was avoided for the freeze. We should merge these and, more generally, think harder about global state management in the GC, since there are an awful lot of "reset X state" functions.
@RLH
The text was updated successfully, but these errors were encountered: