diff options
| author | Damien Neil <dneil@google.com> | 2025-05-15 11:03:15 -0700 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2025-05-20 15:46:07 -0700 |
| commit | 68bc0d84e9dd74a02472bfff744e0650b4b1653c (patch) | |
| tree | 10626779770d26dc241f599e53899dc581f1727a /src/encoding/json/encode.go | |
| parent | 49a660e22cb349cf13ef0a2f6214c6fdd75afda0 (diff) | |
| download | go-68bc0d84e9dd74a02472bfff744e0650b4b1653c.tar.xz | |
encoding/json: avoid supurious synctest deadlock detection
Use a sync.OnceValue rather than a sync.WaitGroup to
coordinate access to encoderCache entries.
The OnceValue better expresses the intent of the code
(we want to initialize the cache entry only once).
However, the motivation for this change is to avoid
testing/synctest incorrectly reporting a deadlock
when multiple bubbles call Marshal at the same time.
Goroutines blocked on WaitGroup.Wait are "durably blocked",
causing confusion when a goroutine in one bubble Waits
for a goroutine in a different bubble. Goroutines blocked
on OnceValue are not durably blocked, avoiding the problem.
Fixes #73733
For #67434
Change-Id: I81cddda80af67cf5c280fd4327620bc37e7a6fe6
Reviewed-on: https://go-review.googlesource.com/c/go/+/673335
Auto-Submit: Damien Neil <dneil@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/encoding/json/encode.go')
| -rw-r--r-- | src/encoding/json/encode.go | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/src/encoding/json/encode.go b/src/encoding/json/encode.go index 78d0865b89..1992e7372e 100644 --- a/src/encoding/json/encode.go +++ b/src/encoding/json/encode.go @@ -359,25 +359,22 @@ func typeEncoder(t reflect.Type) encoderFunc { } // To deal with recursive types, populate the map with an - // indirect func before we build it. This type waits on the - // real func (f) to be ready and then calls it. This indirect - // func is only used for recursive types. - var ( - wg sync.WaitGroup - f encoderFunc - ) - wg.Add(1) + // indirect func before we build it. If the type is recursive, + // the second lookup for the type will return the indirect func. + // + // This indirect func is only used for recursive types, + // and briefly during racing calls to typeEncoder. + indirect := sync.OnceValue(func() encoderFunc { + return newTypeEncoder(t, true) + }) fi, loaded := encoderCache.LoadOrStore(t, encoderFunc(func(e *encodeState, v reflect.Value, opts encOpts) { - wg.Wait() - f(e, v, opts) + indirect()(e, v, opts) })) if loaded { return fi.(encoderFunc) } - // Compute the real encoder and replace the indirect func with it. - f = newTypeEncoder(t, true) - wg.Done() + f := indirect() encoderCache.Store(t, f) return f } |
