]> Cypherpunks repositories - gostls13.git/commit
runtime: hold traceAcquire across casgstatus in injectglist
authorMichael Anthony Knyszek <mknyszek@google.com>
Mon, 23 Dec 2024 17:21:07 +0000 (17:21 +0000)
committerMichael Knyszek <mknyszek@google.com>
Wed, 8 Jan 2025 17:25:53 +0000 (09:25 -0800)
commitf025d19e7b3f0c66242760c213cc2b54cb100f69
tree98f86ce7714041ab63751c8c872010e355d1af60
parent1e9835f5b1806e8e6197f87c1696dc773b68a98a
runtime: hold traceAcquire across casgstatus in injectglist

Currently injectglist emits all the trace events before actually calling
casgstatus on each goroutine. This is a problem, since tracing can
observe an inconsistent state (gstatus does not match tracer's 'emitted
an event' state).

This change fixes the problem by having injectglist do what every other
scheduler function does, and that's wrap each call to casgstatus in
traceAcquire/traceRelease.

Fixes #70883.

Change-Id: I857e96cec01688013597e8efc0c4c3d0b72d3a70
Reviewed-on: https://go-review.googlesource.com/c/go/+/638558
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
src/runtime/proc.go