[go/release-branch.go1.25] [release-branch.go1.25] cmd/compile,sync/atomic: make Add And & Or SQCST on PPC64

4 views
Skip to first unread message

Jorropo (Gerrit)

unread,
Jun 24, 2026, 1:00:29 PM (3 days ago) Jun 24
to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

Jorropo has uploaded the change for review

Commit message

[release-branch.go1.25] cmd/compile,sync/atomic: make Add And & Or SQCST on PPC64

Fixes #79878
Change-Id: I6cc3eeaac8a0002df200852f247fd5494071084b

Change diff

diff --git a/src/cmd/compile/internal/ppc64/ssa.go b/src/cmd/compile/internal/ppc64/ssa.go
index c1f2484..a81ef95 100644
--- a/src/cmd/compile/internal/ppc64/ssa.go
+++ b/src/cmd/compile/internal/ppc64/ssa.go
@@ -134,6 +134,7 @@
// AND/OR Rarg1, Rtmp
// STBCCC/STWCCC Rtmp, (Rarg0)
// BNE -3(PC)
+ // LWSYNC
ld := ppc64.ALBAR
st := ppc64.ASTBCCC
if v.Op == ssa.OpPPC64LoweredAtomicAnd32 || v.Op == ssa.OpPPC64LoweredAtomicOr32 {
@@ -169,6 +170,10 @@
p3 := s.Prog(ppc64.ABNE)
p3.To.Type = obj.TYPE_BRANCH
p3.To.SetTarget(p)
+ // LWSYNC - Provide acquire ordering to pair with the
+ // release (pre-LWSYNC) above, making the operation
+ // sequentially consistent.
+ s.Prog(ppc64.ALWSYNC)

case ssa.OpPPC64LoweredAtomicAdd32,
ssa.OpPPC64LoweredAtomicAdd64:
@@ -178,6 +183,7 @@
// STDCCC/STWCCC Rout, (Rarg0)
// BNE -3(PC)
// MOVW Rout,Rout (if Add32)
+ // LWSYNC
ld := ppc64.ALDAR
st := ppc64.ASTDCCC
if v.Op == ssa.OpPPC64LoweredAtomicAdd32 {
@@ -187,10 +193,10 @@
r0 := v.Args[0].Reg()
r1 := v.Args[1].Reg()
out := v.Reg0()
- // LWSYNC - Assuming shared data not write-through-required nor
- // caching-inhibited. See Appendix B.2.2.2 in the ISA 2.07b.
- plwsync := s.Prog(ppc64.ALWSYNC)
- plwsync.To.Type = obj.TYPE_NONE
+ // LWSYNC - Provide acquire ordering to pair with the
+ // release (pre-LWSYNC) above, making the operation
+ // sequentially consistent.
+ s.Prog(ppc64.ALWSYNC)
// LDAR or LWAR
p := s.Prog(ld)
p.From.Type = obj.TYPE_MEM
@@ -222,6 +228,11 @@
p5.From.Type = obj.TYPE_REG
p5.From.Reg = out
}
+ // LWSYNC - Provide acquire ordering to pair with the
+ // release (pre-LWSYNC) above, making the operation
+ // sequentially consistent.
+ plwsync2 := s.Prog(ppc64.ALWSYNC)
+ plwsync2.To.Type = obj.TYPE_NONE

case ssa.OpPPC64LoweredAtomicExchange8,
ssa.OpPPC64LoweredAtomicExchange32,
diff --git a/src/internal/runtime/atomic/atomic_ppc64x.s b/src/internal/runtime/atomic/atomic_ppc64x.s
index bff7d19..a82a34e 100644
--- a/src/internal/runtime/atomic/atomic_ppc64x.s
+++ b/src/internal/runtime/atomic/atomic_ppc64x.s
@@ -220,6 +220,7 @@
ADD R5, R3
STWCCC R3, (R4)
BNE -3(PC)
+ LWSYNC
MOVW R3, ret+16(FP)
RET

@@ -235,6 +236,7 @@
ADD R5, R3
STDCCC R3, (R4)
BNE -3(PC)
+ LWSYNC
MOVD R3, ret+16(FP)
RET

@@ -343,6 +345,7 @@
OR R4, R6
STBCCC R6, (R3)
BNE again
+ LWSYNC
RET

// void ·And8(byte volatile*, byte);
@@ -355,6 +358,7 @@
AND R4, R6
STBCCC R6, (R3)
BNE again
+ LWSYNC
RET

// func Or(addr *uint32, v uint32)
@@ -367,6 +371,7 @@
OR R4, R6
STWCCC R6, (R3)
BNE again
+ LWSYNC
RET

// func And(addr *uint32, v uint32)
@@ -379,6 +384,7 @@
AND R4, R6
STWCCC R6, (R3)
BNE again
+ LWSYNC
RET

// func Or32(addr *uint32, v uint32) old uint32
@@ -391,6 +397,7 @@
OR R4, R6, R7
STWCCC R7, (R3)
BNE again
+ LWSYNC
MOVW R6, ret+16(FP)
RET

@@ -404,6 +411,7 @@
AND R4, R6, R7
STWCCC R7, (R3)
BNE again
+ LWSYNC
MOVW R6, ret+16(FP)
RET

@@ -417,6 +425,7 @@
OR R4, R6, R7
STDCCC R7, (R3)
BNE again
+ LWSYNC
MOVD R6, ret+16(FP)
RET

@@ -430,6 +439,7 @@
AND R4, R6, R7
STDCCC R7, (R3)
BNE again
+ LWSYNC
MOVD R6, ret+16(FP)
RET

diff --git a/test/fixedbugs/issue79186.go b/test/fixedbugs/issue79186.go
new file mode 100644
index 0000000..21bb6c8
--- /dev/null
+++ b/test/fixedbugs/issue79186.go
@@ -0,0 +1,67 @@
+// run
+
+// Copyright 2026 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// Issue 79186: on ppc64le (POWER8/9), atomic add operations lacked a
+// post-barrier (acquire ordering), allowing loads after an RWMutex.RLock
+// to be speculatively reordered before the lock acquisition, causing
+// concurrent map read and map write.
+
+package main
+
+import (
+ "runtime"
+ "sync"
+)
+
+type M struct {
+ mu sync.RWMutex
+ m map[int]int
+}
+
+func NewM() *M {
+ return &M{m: make(map[int]int)}
+}
+
+func (x *M) Get(k int) (int, bool) {
+ x.mu.RLock()
+ v, ok := x.m[k]
+ x.mu.RUnlock()
+ return v, ok
+}
+
+func (x *M) Set(k, v int) {
+ x.mu.Lock()
+ x.m[k] = v
+ x.mu.Unlock()
+}
+
+func main() {
+ runtime.GOMAXPROCS(2)
+
+ x := NewM()
+
+ const goroutines = 256
+ const iters = 200000
+
+ var wg sync.WaitGroup
+ wg.Add(goroutines)
+
+ for g := 0; g < goroutines; g++ {
+ go func(id int) {
+ defer wg.Done()
+ for i := 0; i < iters; i++ {
+ k := (id + i) & 15
+ if _, ok := x.Get(k); !ok {
+ x.Set(k, i)
+ } else if i&7 == 0 {
+ x.Set(k, i)
+ }
+ }
+ }(g)
+ }
+
+ wg.Wait()
+}

Change information

Files:
  • M src/cmd/compile/internal/ppc64/ssa.go
  • M src/internal/runtime/atomic/atomic_ppc64x.s
  • A test/fixedbugs/issue79186.go
Change size: M
Delta: 3 files changed, 92 insertions(+), 4 deletions(-)
Open in Gerrit

Related details

Attention set is empty
Submit Requirements:
  • requirement is not satisfiedCode-Review
  • requirement satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
  • requirement is not satisfiedTryBots-Pass
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: newchange
Gerrit-Project: go
Gerrit-Branch: release-branch.go1.25
Gerrit-Change-Id: I6cc3eeaac8a0002df200852f247fd5494071084b
Gerrit-Change-Number: 793880
Gerrit-PatchSet: 1
Gerrit-Owner: Jorropo <jorro...@gmail.com>
Gerrit-Reviewer: Jorropo <jorro...@gmail.com>
unsatisfied_requirement
satisfied_requirement
open
diffy

Jorropo (Gerrit)

unread,
Jun 24, 2026, 1:01:19 PM (3 days ago) Jun 24
to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

Jorropo has uploaded the change for review

Commit message

[release-branch.go1.26] cmd/compile,sync/atomic: make Add And & Or SQCST on PPC64

Fixes #79879
Change-Id: I5008d3dc341a2840da1ab7c7c6e787ed303d373b

Change diff

diff --git a/src/cmd/compile/internal/ppc64/ssa.go b/src/cmd/compile/internal/ppc64/ssa.go
index f0d2285..fe251fa 100644
--- a/src/cmd/compile/internal/ppc64/ssa.go
+++ b/src/cmd/compile/internal/ppc64/ssa.go
@@ -135,6 +135,7 @@

// AND/OR Rarg1, Rtmp
// STBCCC/STWCCC Rtmp, (Rarg0)
// BNE -3(PC)
+ // LWSYNC
ld := ppc64.ALBAR
st := ppc64.ASTBCCC
if v.Op == ssa.OpPPC64LoweredAtomicAnd32 || v.Op == ssa.OpPPC64LoweredAtomicOr32 {
@@ -170,6 +171,10 @@

p3 := s.Prog(ppc64.ABNE)
p3.To.Type = obj.TYPE_BRANCH
p3.To.SetTarget(p)
+ // LWSYNC - Provide acquire ordering to pair with the
+ // release (pre-LWSYNC) above, making the operation
+ // sequentially consistent.
+ s.Prog(ppc64.ALWSYNC)

case ssa.OpPPC64LoweredAtomicAdd32,
ssa.OpPPC64LoweredAtomicAdd64:
@@ -179,6 +184,7 @@

// STDCCC/STWCCC Rout, (Rarg0)
// BNE -3(PC)
// MOVW Rout,Rout (if Add32)
+ // LWSYNC
ld := ppc64.ALDAR
st := ppc64.ASTDCCC
if v.Op == ssa.OpPPC64LoweredAtomicAdd32 {
@@ -188,10 +194,10 @@

r0 := v.Args[0].Reg()
r1 := v.Args[1].Reg()
out := v.Reg0()
- // LWSYNC - Assuming shared data not write-through-required nor
- // caching-inhibited. See Appendix B.2.2.2 in the ISA 2.07b.
- plwsync := s.Prog(ppc64.ALWSYNC)
- plwsync.To.Type = obj.TYPE_NONE
+ // LWSYNC - Provide acquire ordering to pair with the
+ // release (pre-LWSYNC) above, making the operation
+ // sequentially consistent.
+ s.Prog(ppc64.ALWSYNC)
// LDAR or LWAR
p := s.Prog(ld)
p.From.Type = obj.TYPE_MEM
@@ -223,6 +229,11 @@
Gerrit-Branch: release-branch.go1.26
Gerrit-Change-Id: I5008d3dc341a2840da1ab7c7c6e787ed303d373b
Gerrit-Change-Number: 793900
unsatisfied_requirement
satisfied_requirement
open
diffy

Jorropo (Gerrit)

unread,
Jun 24, 2026, 1:03:19 PM (3 days ago) Jun 24
to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

Jorropo has uploaded the change for review

Commit message

[release-branch.go1.26] cmd/compile,sync/atomic: make Add And & Or SQCST on PPC64

Fixes #79879
Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
Gerrit-Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
Gerrit-Change-Number: 793901
unsatisfied_requirement
satisfied_requirement
open
diffy

Jorropo (Gerrit)

unread,
Jun 24, 2026, 1:03:27 PM (3 days ago) Jun 24
to goph...@pubsubhelper.golang.org, golang...@luci-project-accounts.iam.gserviceaccount.com, golang-co...@googlegroups.com

Jorropo abandoned this change.

View Change

Abandoned

Jorropo abandoned this change

Related details

Attention set is empty
Submit Requirements:
  • requirement is not satisfiedCode-Review
  • requirement satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
  • requirement is not satisfiedTryBots-Pass
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: abandon
Gerrit-Project: go
Gerrit-Branch: release-branch.go1.25
Gerrit-Change-Id: I6cc3eeaac8a0002df200852f247fd5494071084b
Gerrit-Change-Number: 793880
Gerrit-PatchSet: 1
Gerrit-Owner: Jorropo <jorro...@gmail.com>
Gerrit-Reviewer: Jorropo <jorro...@gmail.com>
unsatisfied_requirement
satisfied_requirement
open
diffy

Jorropo (Gerrit)

unread,
Jun 24, 2026, 1:03:30 PM (3 days ago) Jun 24
to goph...@pubsubhelper.golang.org, golang...@luci-project-accounts.iam.gserviceaccount.com, golang-co...@googlegroups.com

Jorropo abandoned this change.

View Change

Abandoned

Jorropo abandoned this change

Related details

Attention set is empty
Submit Requirements:
  • requirement is not satisfiedCode-Review
  • requirement satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
  • requirement is not satisfiedTryBots-Pass
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: abandon
Gerrit-Project: go
Gerrit-Branch: release-branch.go1.26
Gerrit-Change-Id: I5008d3dc341a2840da1ab7c7c6e787ed303d373b
Gerrit-Change-Number: 793900
unsatisfied_requirement
satisfied_requirement
open
diffy

Jorropo (Gerrit)

unread,
Jun 24, 2026, 1:04:04 PM (3 days ago) Jun 24
to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

Jorropo has uploaded the change for review

Commit message

[release-branch.go1.25] cmd/compile,sync/atomic: make Add And & Or SQCST on PPC64

Fixes #79878
Change-Id: If7e298270ac6252b092371725d6a96aa871bf919

Change diff

diff --git a/src/cmd/compile/internal/ppc64/ssa.go b/src/cmd/compile/internal/ppc64/ssa.go
index c1f2484..a81ef95 100644
--- a/src/cmd/compile/internal/ppc64/ssa.go
+++ b/src/cmd/compile/internal/ppc64/ssa.go
@@ -134,6 +134,7 @@

// AND/OR Rarg1, Rtmp
// STBCCC/STWCCC Rtmp, (Rarg0)
// BNE -3(PC)
+ // LWSYNC
ld := ppc64.ALBAR
st := ppc64.ASTBCCC
if v.Op == ssa.OpPPC64LoweredAtomicAnd32 || v.Op == ssa.OpPPC64LoweredAtomicOr32 {
@@ -169,6 +170,10 @@

p3 := s.Prog(ppc64.ABNE)
p3.To.Type = obj.TYPE_BRANCH
p3.To.SetTarget(p)
+ // LWSYNC - Provide acquire ordering to pair with the
+ // release (pre-LWSYNC) above, making the operation
+ // sequentially consistent.
+ s.Prog(ppc64.ALWSYNC)

case ssa.OpPPC64LoweredAtomicAdd32,
ssa.OpPPC64LoweredAtomicAdd64:
@@ -178,6 +183,7 @@

// STDCCC/STWCCC Rout, (Rarg0)
// BNE -3(PC)
// MOVW Rout,Rout (if Add32)
+ // LWSYNC
ld := ppc64.ALDAR
st := ppc64.ASTDCCC
if v.Op == ssa.OpPPC64LoweredAtomicAdd32 {
@@ -187,10 +193,10 @@

r0 := v.Args[0].Reg()
r1 := v.Args[1].Reg()
out := v.Reg0()
- // LWSYNC - Assuming shared data not write-through-required nor
- // caching-inhibited. See Appendix B.2.2.2 in the ISA 2.07b.
- plwsync := s.Prog(ppc64.ALWSYNC)
- plwsync.To.Type = obj.TYPE_NONE
+ // LWSYNC - Provide acquire ordering to pair with the
+ // release (pre-LWSYNC) above, making the operation
+ // sequentially consistent.
+ s.Prog(ppc64.ALWSYNC)
// LDAR or LWAR
p := s.Prog(ld)
p.From.Type = obj.TYPE_MEM
@@ -222,6 +228,11 @@

Related details

Attention set is empty
Submit Requirements:
  • requirement is not satisfiedCode-Review
  • requirement satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
  • requirement is not satisfiedTryBots-Pass
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: newchange
Gerrit-Project: go
Gerrit-Branch: release-branch.go1.25
Gerrit-Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
Gerrit-Change-Number: 793881
unsatisfied_requirement
satisfied_requirement
open
diffy

Jorropo (Gerrit)

unread,
Jun 24, 2026, 1:38:10 PM (3 days ago) Jun 24
to goph...@pubsubhelper.golang.org, golang...@luci-project-accounts.iam.gserviceaccount.com, Austin Clements, Keith Randall, Michael Knyszek, Gopher Robot, golang-co...@googlegroups.com
Attention needed from Austin Clements, Keith Randall and Michael Knyszek

Jorropo voted Commit-Queue+1

Commit-Queue+1
Open in Gerrit

Related details

Attention is currently required from:
  • Austin Clements
  • Keith Randall
  • Michael Knyszek
Submit Requirements:
  • requirement is not satisfiedCode-Review
  • requirement satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
  • requirement is not satisfiedTryBots-Pass
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: go
Gerrit-Branch: release-branch.go1.26
Gerrit-Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
Gerrit-Change-Number: 793901
Gerrit-PatchSet: 1
Gerrit-Owner: Jorropo <jorro...@gmail.com>
Gerrit-Reviewer: Austin Clements <aus...@google.com>
Gerrit-Reviewer: Jorropo <jorro...@gmail.com>
Gerrit-Reviewer: Keith Randall <k...@golang.org>
Gerrit-Reviewer: Michael Knyszek <mkny...@google.com>
Gerrit-CC: Gopher Robot <go...@golang.org>
Gerrit-Attention: Keith Randall <k...@golang.org>
Gerrit-Attention: Austin Clements <aus...@google.com>
Gerrit-Attention: Michael Knyszek <mkny...@google.com>
Gerrit-Comment-Date: Wed, 24 Jun 2026 17:38:03 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
unsatisfied_requirement
satisfied_requirement
open
diffy

Jorropo (Gerrit)

unread,
Jun 24, 2026, 1:53:37 PM (3 days ago) Jun 24
to goph...@pubsubhelper.golang.org, golang...@luci-project-accounts.iam.gserviceaccount.com, Austin Clements, Keith Randall, Michael Knyszek, Gopher Robot, golang-co...@googlegroups.com
Attention needed from Austin Clements, Keith Randall and Michael Knyszek

Jorropo added 1 comment

Patchset-level comments
File-level comment, Patchset 1 (Latest):
Jorropo . resolved

CI fails on arm64 debian, I don't want to spend time investigating why as it looks impossible for this power PC change to work everywhere except on arm64.

Gerrit-Comment-Date: Wed, 24 Jun 2026 17:53:29 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
unsatisfied_requirement
satisfied_requirement
open
diffy

Jorropo (Gerrit)

unread,
Jun 24, 2026, 3:03:22 PM (3 days ago) Jun 24
to goph...@pubsubhelper.golang.org, golang...@luci-project-accounts.iam.gserviceaccount.com, Austin Clements, Keith Randall, Michael Knyszek, Gopher Robot, golang-co...@googlegroups.com
Attention needed from Austin Clements, Keith Randall and Michael Knyszek

Jorropo added 1 comment

Patchset-level comments
Jorropo . resolved

CI fails on arm64 debian, I don't want to spend time investigating why as it looks impossible for this power PC change to work everywhere except on arm64.

Jorropo

Turns I've figured out in CL 793960 that I was on go1.26.2 not 1.26.4, a `git pull` fixed the issue.

Open in Gerrit

Related details

Attention is currently required from:
  • Austin Clements
  • Keith Randall
  • Michael Knyszek
Submit Requirements:
    • requirement is not satisfiedCode-Review
    • requirement satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: comment
    Gerrit-Project: go
    Gerrit-Branch: release-branch.go1.26
    Gerrit-Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
    Gerrit-Change-Number: 793901
    Gerrit-PatchSet: 2
    Gerrit-Owner: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Austin Clements <aus...@google.com>
    Gerrit-Reviewer: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Keith Randall <k...@golang.org>
    Gerrit-Reviewer: Michael Knyszek <mkny...@google.com>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-Attention: Keith Randall <k...@golang.org>
    Gerrit-Attention: Austin Clements <aus...@google.com>
    Gerrit-Attention: Michael Knyszek <mkny...@google.com>
    Gerrit-Comment-Date: Wed, 24 Jun 2026 19:03:13 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    Comment-In-Reply-To: Jorropo <jorro...@gmail.com>
    unsatisfied_requirement
    satisfied_requirement
    open
    diffy

    Keith Randall (Gerrit)

    unread,
    Jun 25, 2026, 4:17:55 PM (2 days ago) Jun 25
    to Jorropo, goph...@pubsubhelper.golang.org, Keith Randall, golang...@luci-project-accounts.iam.gserviceaccount.com, Austin Clements, Michael Knyszek, Gopher Robot, golang-co...@googlegroups.com
    Attention needed from Austin Clements, Jorropo and Michael Knyszek

    Keith Randall voted Code-Review+2

    Code-Review+2
    Open in Gerrit

    Related details

    Attention is currently required from:
    • Austin Clements
    • Jorropo
    • Michael Knyszek
    Submit Requirements:
    • requirement satisfiedCode-Review
    • requirement satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: comment
    Gerrit-Project: go
    Gerrit-Branch: release-branch.go1.26
    Gerrit-Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
    Gerrit-Change-Number: 793901
    Gerrit-PatchSet: 2
    Gerrit-Owner: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Austin Clements <aus...@google.com>
    Gerrit-Reviewer: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Keith Randall <k...@golang.org>
    Gerrit-Reviewer: Michael Knyszek <mkny...@google.com>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-Attention: Jorropo <jorro...@gmail.com>
    Gerrit-Attention: Austin Clements <aus...@google.com>
    Gerrit-Attention: Michael Knyszek <mkny...@google.com>
    Gerrit-Comment-Date: Thu, 25 Jun 2026 20:17:51 +0000
    Gerrit-HasComments: No
    Gerrit-Has-Labels: Yes
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Keith Randall (Gerrit)

    unread,
    Jun 25, 2026, 4:18:09 PM (2 days ago) Jun 25
    to Jorropo, goph...@pubsubhelper.golang.org, Keith Randall, golang...@luci-project-accounts.iam.gserviceaccount.com, Mauri de Souza Meneguzzo, Russ Cox, Gopher Robot, golang-co...@googlegroups.com
    Attention needed from Jorropo, Mauri de Souza Meneguzzo and Russ Cox

    Keith Randall voted Code-Review+2

    Code-Review+2
    Open in Gerrit

    Related details

    Attention is currently required from:
    • Jorropo
    • Mauri de Souza Meneguzzo
    • Russ Cox
    Submit Requirements:
    • requirement satisfiedCode-Review
    • requirement satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: comment
    Gerrit-Project: go
    Gerrit-Branch: release-branch.go1.25
    Gerrit-Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
    Gerrit-Change-Number: 793881
    Gerrit-PatchSet: 1
    Gerrit-Owner: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Keith Randall <k...@golang.org>
    Gerrit-Reviewer: Mauri de Souza Meneguzzo <maur...@gmail.com>
    Gerrit-Reviewer: Russ Cox <r...@golang.org>
    Gerrit-Attention: Russ Cox <r...@golang.org>
    Gerrit-Attention: Jorropo <jorro...@gmail.com>
    Gerrit-Attention: Mauri de Souza Meneguzzo <maur...@gmail.com>
    Gerrit-Comment-Date: Thu, 25 Jun 2026 20:18:04 +0000
    Gerrit-HasComments: No
    Gerrit-Has-Labels: Yes
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Keith Randall (Gerrit)

    unread,
    Jun 25, 2026, 4:18:16 PM (2 days ago) Jun 25
    to Jorropo, goph...@pubsubhelper.golang.org, Keith Randall, golang...@luci-project-accounts.iam.gserviceaccount.com, Mauri de Souza Meneguzzo, Russ Cox, Gopher Robot, golang-co...@googlegroups.com
    Attention needed from Jorropo, Mauri de Souza Meneguzzo and Russ Cox

    Keith Randall voted Code-Review+1

    Code-Review+1
    Open in Gerrit

    Related details

    Attention is currently required from:
    • Jorropo
    • Mauri de Souza Meneguzzo
    • Russ Cox
    Submit Requirements:
    • requirement satisfiedCode-Review
    • requirement satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: comment
    Gerrit-Project: go
    Gerrit-Branch: release-branch.go1.25
    Gerrit-Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
    Gerrit-Change-Number: 793881
    Gerrit-PatchSet: 1
    Gerrit-Owner: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Keith Randall <k...@golang.org>
    Gerrit-Reviewer: Keith Randall <k...@google.com>
    Gerrit-Reviewer: Mauri de Souza Meneguzzo <maur...@gmail.com>
    Gerrit-Reviewer: Russ Cox <r...@golang.org>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-Attention: Russ Cox <r...@golang.org>
    Gerrit-Attention: Jorropo <jorro...@gmail.com>
    Gerrit-Attention: Mauri de Souza Meneguzzo <maur...@gmail.com>
    Gerrit-Comment-Date: Thu, 25 Jun 2026 20:18:11 +0000
    Gerrit-HasComments: No
    Gerrit-Has-Labels: Yes
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Keith Randall (Gerrit)

    unread,
    Jun 25, 2026, 4:18:24 PM (2 days ago) Jun 25
    to Jorropo, goph...@pubsubhelper.golang.org, Keith Randall, golang...@luci-project-accounts.iam.gserviceaccount.com, Austin Clements, Michael Knyszek, Gopher Robot, golang-co...@googlegroups.com
    Attention needed from Austin Clements, Jorropo and Michael Knyszek

    Keith Randall voted Code-Review+1

    Code-Review+1
    Open in Gerrit

    Related details

    Attention is currently required from:
    • Austin Clements
    • Jorropo
    • Michael Knyszek
    Submit Requirements:
    • requirement satisfiedCode-Review
    • requirement satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: comment
    Gerrit-Project: go
    Gerrit-Branch: release-branch.go1.26
    Gerrit-Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
    Gerrit-Change-Number: 793901
    Gerrit-PatchSet: 2
    Gerrit-Owner: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Austin Clements <aus...@google.com>
    Gerrit-Reviewer: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Keith Randall <k...@golang.org>
    Gerrit-Reviewer: Keith Randall <k...@google.com>
    Gerrit-Reviewer: Michael Knyszek <mkny...@google.com>
    Gerrit-Attention: Jorropo <jorro...@gmail.com>
    Gerrit-Attention: Austin Clements <aus...@google.com>
    Gerrit-Attention: Michael Knyszek <mkny...@google.com>
    Gerrit-Comment-Date: Thu, 25 Jun 2026 20:18:19 +0000
    Gerrit-HasComments: No
    Gerrit-Has-Labels: Yes
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Jorropo (Gerrit)

    unread,
    Jun 26, 2026, 11:30:10 PM (7 hours ago) Jun 26
    to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
    Attention needed from Austin Clements, Jorropo and Michael Knyszek

    Jorropo uploaded new patchset

    Jorropo uploaded patch set #3 to this change.
    Open in Gerrit

    Related details

    Attention is currently required from:
    • Austin Clements
    • Jorropo
    • Michael Knyszek
    Submit Requirements:
    • requirement satisfiedCode-Review
    • requirement satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: newpatchset
    Gerrit-Project: go
    Gerrit-Branch: release-branch.go1.26
    Gerrit-Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
    Gerrit-Change-Number: 793901
    Gerrit-PatchSet: 3
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Jorropo (Gerrit)

    unread,
    Jun 26, 2026, 11:31:01 PM (7 hours ago) Jun 26
    to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
    Attention needed from Jorropo, Mauri de Souza Meneguzzo and Russ Cox

    Jorropo uploaded new patchset

    Jorropo uploaded patch set #2 to this change.
    Open in Gerrit

    Related details

    Attention is currently required from:
    • Jorropo
    • Mauri de Souza Meneguzzo
    • Russ Cox
    Submit Requirements:
    • requirement satisfiedCode-Review
    • requirement satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: newpatchset
    Gerrit-Project: go
    Gerrit-Branch: release-branch.go1.25
    Gerrit-Change-Id: If7e298270ac6252b092371725d6a96aa871bf919
    Gerrit-Change-Number: 793881
    Gerrit-PatchSet: 2
    Gerrit-Owner: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Jorropo <jorro...@gmail.com>
    Gerrit-Reviewer: Keith Randall <k...@golang.org>
    Gerrit-Reviewer: Keith Randall <k...@google.com>
    Gerrit-Reviewer: Mauri de Souza Meneguzzo <maur...@gmail.com>
    Gerrit-Reviewer: Russ Cox <r...@golang.org>
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy
    Reply all
    Reply to author
    Forward
    0 new messages