[go] runtime: revert entry point on freebsd/arm64

3 views
Skip to first unread message

Gerrit Bot (Gerrit)

unread,
Dec 22, 2025, 3:06:01 PM (2 days ago) Dec 22
to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

Gerrit Bot has uploaded the change for review

Commit message

runtime: revert entry point on freebsd/arm64

Commit 45d6bc76af641853a0bea31c77912bf9fd52ed79 unified some arm64 entry points. However, the entry point for freebsd/arm64 is incorrect and builds now fail. This change reverts the freebsd/arm64 entry point and adds additional context for the future.

Fixes #76958
Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
GitHub-Last-Rev: 6fd243e99db38716bef9a547e3fe821e373cfe0a
GitHub-Pull-Request: golang/go#76959

Change diff

diff --git a/src/runtime/rt0_freebsd_arm64.s b/src/runtime/rt0_freebsd_arm64.s
index a7a9526..99f2394 100644
--- a/src/runtime/rt0_freebsd_arm64.s
+++ b/src/runtime/rt0_freebsd_arm64.s
@@ -4,9 +4,12 @@

#include "textflag.h"

-// On FreeBSD argc/argv are passed in R0, not RSP
+// FreeBSD passes a pointer to the argument block in R0, not RSP,
+// so _rt0_arm64 cannot be used.
TEXT _rt0_arm64_freebsd(SB),NOSPLIT,$0
- JMP _rt0_arm64(SB)
+ ADD $8, R0, R1 // argv (use R0 while it's still the pointer)
+ MOVD 0(R0), R0 // argc
+ JMP runtime·rt0_go(SB)

// When building with -buildmode=c-shared, this symbol is called when the shared
// library is loaded.

Change information

Files:
  • M src/runtime/rt0_freebsd_arm64.s
Change size: XS
Delta: 1 file changed, 5 insertions(+), 2 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: master
Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
Gerrit-Change-Number: 731980
Gerrit-PatchSet: 1
Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
unsatisfied_requirement
satisfied_requirement
open
diffy

Gopher Robot (Gerrit)

unread,
Dec 22, 2025, 3:06:04 PM (2 days ago) Dec 22
to Gerrit Bot, goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

Gopher Robot added 1 comment

Patchset-level comments
File-level comment, Patchset 1 (Latest):
Gopher Robot . unresolved

I spotted some possible problems with your PR:

  1. You have a long 251 character line in the commit message body. Please add line breaks to long lines that should be wrapped. Lines in the commit message body should be wrapped at ~76 characters unless needed for things like URLs or tables. (Note: GitHub might render long lines as soft-wrapped, so double-check in the Gerrit commit message shown above.)

Please address any problems by updating the GitHub PR.

When complete, mark this comment as 'Done' and click the [blue 'Reply' button](https://go.dev/wiki/GerritBot#i-left-a-reply-to-a-comment-in-gerrit-but-no-one-but-me-can-see-it) above. These findings are based on heuristics; if a finding does not apply, briefly reply here saying so.

To update the commit title or commit message body shown here in Gerrit, you must edit the GitHub PR title and PR description (the first comment) in the GitHub web interface using the 'Edit' button or 'Edit' menu entry there. Note: pushing a new commit to the PR will not automatically update the commit message used by Gerrit.

For more details, see:

(In general for Gerrit code reviews, the change author is expected to [log in to Gerrit](https://go-review.googlesource.com/login/) with a Gmail or other Google account and then close out each piece of feedback by marking it as 'Done' if implemented as suggested or otherwise reply to each review comment. See the [Review](https://go.dev/doc/contribute#review) section of the Contributing Guide for details.)

Open in Gerrit

Related details

Attention set is empty
Submit Requirements:
    • requirement is not satisfiedCode-Review
    • requirement is not 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: master
    Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
    Gerrit-Change-Number: 731980
    Gerrit-PatchSet: 1
    Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-Comment-Date: Mon, 22 Dec 2025 20:05:59 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    unsatisfied_requirement
    open
    diffy

    Gopher Robot (Gerrit)

    unread,
    Dec 22, 2025, 3:08:35 PM (2 days ago) Dec 22
    to Gerrit Bot, goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

    Message from Gopher Robot

    Congratulations on opening your first change. Thank you for your contribution!

    Next steps:
    A maintainer will review your change and provide feedback. See
    https://go.dev/doc/contribute#review for more info and tips to get your
    patch through code review.

    Most changes in the Go project go through a few rounds of revision. This can be
    surprising to people new to the project. The careful, iterative review process
    is our way of helping mentor contributors and ensuring that their contributions
    have a lasting impact.

    During May-July and Nov-Jan the Go project is in a code freeze, during which
    little code gets reviewed or merged. If a reviewer responds with a comment like
    R=go1.11 or adds a tag like "wait-release", it means that this CL will be
    reviewed as part of the next development cycle. See https://go.dev/s/release
    for more details.

    Open in Gerrit

    Related details

    Attention set is empty
    Submit Requirements:
    • requirement is not satisfiedCode-Review
    • requirement is not 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: master
    Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
    Gerrit-Change-Number: 731980
    Gerrit-PatchSet: 1
    Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-Comment-Date: Mon, 22 Dec 2025 20:08:30 +0000
    Gerrit-HasComments: No
    Gerrit-Has-Labels: No
    unsatisfied_requirement
    open
    diffy

    Austin Clements (Gerrit)

    unread,
    Dec 22, 2025, 3:31:46 PM (2 days ago) Dec 22
    to Gerrit Bot, goph...@pubsubhelper.golang.org, Quim Muntal, Michael Pratt, Cherry Mui, Austin Clements, Gopher Robot, golang-co...@googlegroups.com
    Attention needed from Cherry Mui, Michael Pratt and Quim Muntal

    Austin Clements voted and added 2 comments

    Votes added by Austin Clements

    Code-Review+2

    2 comments

    Patchset-level comments
    Austin Clements . resolved

    Thanks!

    Commit Message
    Line 9, Patchset 1 (Latest):Commit 45d6bc76af641853a0bea31c77912bf9fd52ed79 unified some arm64 entry points. However, the entry point for freebsd/arm64 is incorrect and builds now fail. This change reverts the freebsd/arm64 entry point and adds additional context for the future.
    Austin Clements . unresolved

    We generally use CL numbers to reference commits, so this should be "CL 706175"

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Cherry Mui
    • Michael Pratt
    • Quim Muntal
    Submit Requirements:
    • requirement satisfiedCode-Review
    • requirement is not 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: master
    Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
    Gerrit-Change-Number: 731980
    Gerrit-PatchSet: 1
    Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
    Gerrit-Reviewer: Austin Clements <aus...@google.com>
    Gerrit-Reviewer: Cherry Mui <cher...@google.com>
    Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
    Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
    Gerrit-Attention: Cherry Mui <cher...@google.com>
    Gerrit-Attention: Michael Pratt <mpr...@google.com>
    Gerrit-Comment-Date: Mon, 22 Dec 2025 20:31:41 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: Yes
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Austin Clements (Gerrit)

    unread,
    Dec 22, 2025, 3:32:50 PM (2 days ago) Dec 22
    to Gerrit Bot, goph...@pubsubhelper.golang.org, Austin Clements, Quim Muntal, Michael Pratt, Cherry Mui, Gopher Robot, golang-co...@googlegroups.com
    Attention needed from Cherry Mui, Michael Pratt and Quim Muntal

    Austin Clements voted and added 1 comment

    Votes added by Austin Clements

    Run-TryBot+1

    1 comment

    Patchset-level comments
    Austin Clements . resolved

    TRY=freebsd-arm64

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Cherry Mui
    • Michael Pratt
    • Quim Muntal
    Submit Requirements:
    • requirement satisfiedCode-Review
    • requirement is not satisfiedLegacy-TryBots-Pass
    • requirement is not 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: master
    Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
    Gerrit-Change-Number: 731980
    Gerrit-PatchSet: 1
    Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
    Gerrit-Reviewer: Austin Clements <aus...@google.com>
    Gerrit-Reviewer: Cherry Mui <cher...@google.com>
    Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
    Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
    Gerrit-Attention: Cherry Mui <cher...@google.com>
    Gerrit-Attention: Michael Pratt <mpr...@google.com>
    Gerrit-Comment-Date: Mon, 22 Dec 2025 20:32:46 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: Yes
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Gerrit Bot (Gerrit)

    unread,
    Dec 22, 2025, 4:07:51 PM (2 days ago) Dec 22
    to Robert Nichols, goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
    Attention needed from Austin Clements, Cherry Mui, Michael Pratt and Quim Muntal

    Gerrit Bot uploaded new patchset

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

    Related details

    Attention is currently required from:
    • Austin Clements
    • Cherry Mui
    • Michael Pratt
    • Quim Muntal
    Submit Requirements:
    • requirement satisfiedCode-Review
    • requirement is not satisfiedLegacy-TryBots-Pass
    • requirement is not 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: newpatchset
    Gerrit-Project: go
    Gerrit-Branch: master
    Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
    Gerrit-Change-Number: 731980
    Gerrit-PatchSet: 2
    Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
    Gerrit-Reviewer: Austin Clements <aus...@google.com>
    Gerrit-Reviewer: Cherry Mui <cher...@google.com>
    Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
    Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-CC: Robert Nichols <robert....@dialwave.com>
    Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
    Gerrit-Attention: Cherry Mui <cher...@google.com>
    Gerrit-Attention: Michael Pratt <mpr...@google.com>
    Gerrit-Attention: Austin Clements <aus...@google.com>
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Robert Nichols (Gerrit)

    unread,
    Dec 22, 2025, 4:13:10 PM (2 days ago) Dec 22
    to Gerrit Bot, goph...@pubsubhelper.golang.org, Austin Clements, Quim Muntal, Michael Pratt, Cherry Mui, Gopher Robot, golang-co...@googlegroups.com
    Attention needed from Austin Clements, Cherry Mui, Michael Pratt and Quim Muntal

    Robert Nichols added 2 comments

    Patchset-level comments
    File-level comment, Patchset 1:
    Gopher Robot . resolved

    I spotted some possible problems with your PR:

      1. You have a long 251 character line in the commit message body. Please add line breaks to long lines that should be wrapped. Lines in the commit message body should be wrapped at ~76 characters unless needed for things like URLs or tables. (Note: GitHub might render long lines as soft-wrapped, so double-check in the Gerrit commit message shown above.)

    Please address any problems by updating the GitHub PR.

    When complete, mark this comment as 'Done' and click the [blue 'Reply' button](https://go.dev/wiki/GerritBot#i-left-a-reply-to-a-comment-in-gerrit-but-no-one-but-me-can-see-it) above. These findings are based on heuristics; if a finding does not apply, briefly reply here saying so.

    To update the commit title or commit message body shown here in Gerrit, you must edit the GitHub PR title and PR description (the first comment) in the GitHub web interface using the 'Edit' button or 'Edit' menu entry there. Note: pushing a new commit to the PR will not automatically update the commit message used by Gerrit.

    For more details, see:

    (In general for Gerrit code reviews, the change author is expected to [log in to Gerrit](https://go-review.googlesource.com/login/) with a Gmail or other Google account and then close out each piece of feedback by marking it as 'Done' if implemented as suggested or otherwise reply to each review comment. See the [Review](https://go.dev/doc/contribute#review) section of the Contributing Guide for details.)

    Robert Nichols

    Done

    Commit Message
    Line 9, Patchset 1:Commit 45d6bc76af641853a0bea31c77912bf9fd52ed79 unified some arm64 entry points. However, the entry point for freebsd/arm64 is incorrect and builds now fail. This change reverts the freebsd/arm64 entry point and adds additional context for the future.
    Austin Clements . resolved

    We generally use CL numbers to reference commits, so this should be "CL 706175"

    Robert Nichols

    My apologies, this has been updated.

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Austin Clements
    • Cherry Mui
    • Michael Pratt
    • Quim Muntal
    Submit Requirements:
    • requirement satisfiedCode-Review
    • requirement is not satisfiedLegacy-TryBots-Pass
    • requirement is not 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: master
    Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
    Gerrit-Change-Number: 731980
    Gerrit-PatchSet: 2
    Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
    Gerrit-Reviewer: Austin Clements <aus...@google.com>
    Gerrit-Reviewer: Cherry Mui <cher...@google.com>
    Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
    Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-CC: Robert Nichols <robert....@dialwave.com>
    Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
    Gerrit-Attention: Cherry Mui <cher...@google.com>
    Gerrit-Attention: Michael Pratt <mpr...@google.com>
    Gerrit-Attention: Austin Clements <aus...@google.com>
    Gerrit-Comment-Date: Mon, 22 Dec 2025 21:13:05 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    Comment-In-Reply-To: Gopher Robot <go...@golang.org>
    Comment-In-Reply-To: Austin Clements <aus...@google.com>
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Cherry Mui (Gerrit)

    unread,
    Dec 22, 2025, 4:19:12 PM (2 days ago) Dec 22
    to Robert Nichols, Gerrit Bot, goph...@pubsubhelper.golang.org, Austin Clements, Quim Muntal, Michael Pratt, Gopher Robot, golang-co...@googlegroups.com
    Attention needed from Austin Clements, Michael Pratt and Quim Muntal

    Cherry Mui voted and added 1 comment

    Votes added by Cherry Mui

    Code-Review+2

    1 comment

    File src/runtime/rt0_freebsd_arm64.s
    Line 12, Patchset 1: JMP runtime·rt0_go(SB)
    Cherry Mui . unresolved

    Minor: use tab here.

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Austin Clements
    • Michael Pratt
    • Quim Muntal
    Submit Requirements:
      • requirement satisfiedCode-Review
      • requirement is not satisfiedLegacy-TryBots-Pass
      • requirement is not satisfiedNo-Unresolved-Comments
      • requirement 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: master
      Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
      Gerrit-Change-Number: 731980
      Gerrit-PatchSet: 1
      Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
      Gerrit-Reviewer: Austin Clements <aus...@google.com>
      Gerrit-Reviewer: Cherry Mui <cher...@google.com>
      Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
      Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: Robert Nichols <robert....@dialwave.com>
      Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
      Gerrit-Attention: Michael Pratt <mpr...@google.com>
      Gerrit-Attention: Austin Clements <aus...@google.com>
      Gerrit-Comment-Date: Mon, 22 Dec 2025 21:19:08 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: Yes
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Gerrit Bot (Gerrit)

      unread,
      Dec 22, 2025, 4:25:15 PM (2 days ago) Dec 22
      to Robert Nichols, goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
      Attention needed from Austin Clements, Cherry Mui, Michael Pratt and Quim Muntal

      Gerrit Bot uploaded new patchset

      Gerrit Bot uploaded patch set #3 to this change.
      Following approvals got outdated and were removed:
      • Code-Review: +2 by Austin Clements, +2 by Cherry Mui
      • Legacy-TryBots-Pass: Run-TryBot+1 by Austin Clements
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Austin Clements
      • Cherry Mui
      • Michael Pratt
      • Quim Muntal
      Submit Requirements:
      • requirement is not satisfiedCode-Review
      • requirement is not 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: newpatchset
      Gerrit-Project: go
      Gerrit-Branch: master
      Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
      Gerrit-Change-Number: 731980
      Gerrit-PatchSet: 3
      Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
      Gerrit-Reviewer: Austin Clements <aus...@google.com>
      Gerrit-Reviewer: Cherry Mui <cher...@google.com>
      Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
      Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: Robert Nichols <robert....@dialwave.com>
      Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
      Gerrit-Attention: Cherry Mui <cher...@google.com>
      unsatisfied_requirement
      open
      diffy

      Robert Nichols (Gerrit)

      unread,
      Dec 22, 2025, 4:27:36 PM (2 days ago) Dec 22
      to Gerrit Bot, goph...@pubsubhelper.golang.org, Cherry Mui, Austin Clements, Quim Muntal, Michael Pratt, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Austin Clements, Cherry Mui, Michael Pratt and Quim Muntal

      Robert Nichols added 1 comment

      File src/runtime/rt0_freebsd_arm64.s
      Line 12, Patchset 1: JMP runtime·rt0_go(SB)
      Cherry Mui . resolved

      Minor: use tab here.

      Robert Nichols

      Thank you, this has been updated.

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Austin Clements
      • Cherry Mui
      • Michael Pratt
      • Quim Muntal
      Submit Requirements:
      • requirement is not satisfiedCode-Review
      • requirement is not 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: master
      Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
      Gerrit-Change-Number: 731980
      Gerrit-PatchSet: 3
      Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
      Gerrit-Reviewer: Austin Clements <aus...@google.com>
      Gerrit-Reviewer: Cherry Mui <cher...@google.com>
      Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
      Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: Robert Nichols <robert....@dialwave.com>
      Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
      Gerrit-Attention: Cherry Mui <cher...@google.com>
      Gerrit-Attention: Michael Pratt <mpr...@google.com>
      Gerrit-Attention: Austin Clements <aus...@google.com>
      Gerrit-Comment-Date: Mon, 22 Dec 2025 21:27:32 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      Comment-In-Reply-To: Cherry Mui <cher...@google.com>
      unsatisfied_requirement
      open
      diffy

      Ian Lance Taylor (Gerrit)

      unread,
      Dec 22, 2025, 4:45:42 PM (2 days ago) Dec 22
      to Robert Nichols, Gerrit Bot, goph...@pubsubhelper.golang.org, Ian Lance Taylor, Cherry Mui, Austin Clements, Quim Muntal, Michael Pratt, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Austin Clements, Cherry Mui, Michael Pratt and Quim Muntal

      Ian Lance Taylor voted Code-Review+2

      Code-Review+2
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Austin Clements
      • Cherry Mui
      • Michael Pratt
      • Quim Muntal
      Submit Requirements:
      • requirement satisfiedCode-Review
      • requirement is not 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: master
      Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
      Gerrit-Change-Number: 731980
      Gerrit-PatchSet: 3
      Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
      Gerrit-Reviewer: Austin Clements <aus...@google.com>
      Gerrit-Reviewer: Cherry Mui <cher...@google.com>
      Gerrit-Reviewer: Ian Lance Taylor <ia...@golang.org>
      Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
      Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: Robert Nichols <robert....@dialwave.com>
      Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
      Gerrit-Attention: Cherry Mui <cher...@google.com>
      Gerrit-Attention: Michael Pratt <mpr...@google.com>
      Gerrit-Attention: Austin Clements <aus...@google.com>
      Gerrit-Comment-Date: Mon, 22 Dec 2025 21:45:38 +0000
      Gerrit-HasComments: No
      Gerrit-Has-Labels: Yes
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Cherry Mui (Gerrit)

      unread,
      Dec 22, 2025, 4:46:54 PM (2 days ago) Dec 22
      to Robert Nichols, Gerrit Bot, goph...@pubsubhelper.golang.org, Ian Lance Taylor, Austin Clements, Quim Muntal, Michael Pratt, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Austin Clements, Michael Pratt and Quim Muntal

      Cherry Mui voted Code-Review+2

      Code-Review+2
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Austin Clements
      • Michael Pratt
      • Quim Muntal
      Submit Requirements:
      • requirement satisfiedCode-Review
      • requirement is not 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: master
      Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
      Gerrit-Change-Number: 731980
      Gerrit-PatchSet: 3
      Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
      Gerrit-Reviewer: Austin Clements <aus...@google.com>
      Gerrit-Reviewer: Cherry Mui <cher...@google.com>
      Gerrit-Reviewer: Ian Lance Taylor <ia...@golang.org>
      Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
      Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: Robert Nichols <robert....@dialwave.com>
      Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
      Gerrit-Attention: Michael Pratt <mpr...@google.com>
      Gerrit-Attention: Austin Clements <aus...@google.com>
      Gerrit-Comment-Date: Mon, 22 Dec 2025 21:46:50 +0000
      Gerrit-HasComments: No
      Gerrit-Has-Labels: Yes
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Austin Clements (Gerrit)

      unread,
      Dec 22, 2025, 6:18:01 PM (2 days ago) Dec 22
      to Robert Nichols, Gerrit Bot, goph...@pubsubhelper.golang.org, Austin Clements, Cherry Mui, Ian Lance Taylor, Quim Muntal, Michael Pratt, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Michael Pratt and Quim Muntal

      Austin Clements voted and added 1 comment

      Votes added by Austin Clements

      Auto-Submit+1
      Commit-Queue+1

      1 comment

      Patchset-level comments
      File-level comment, Patchset 2:
      Gopher Robot . resolved

      SlowBots beginning. Status page: https://farmer.golang.org/try?commit=a43db522

      Austin Clements

      Hmm. The old bot doesn't seem to be working.

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Michael Pratt
      • Quim Muntal
      Submit Requirements:
      • requirement 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: master
      Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
      Gerrit-Change-Number: 731980
      Gerrit-PatchSet: 3
      Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
      Gerrit-Reviewer: Austin Clements <aus...@google.com>
      Gerrit-Reviewer: Cherry Mui <cher...@google.com>
      Gerrit-Reviewer: Ian Lance Taylor <ia...@golang.org>
      Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
      Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: Robert Nichols <robert....@dialwave.com>
      Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
      Gerrit-Attention: Michael Pratt <mpr...@google.com>
      Gerrit-Comment-Date: Mon, 22 Dec 2025 23:17:58 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: Yes
      Comment-In-Reply-To: Gopher Robot <go...@golang.org>
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Austin Clements (Gerrit)

      unread,
      Dec 22, 2025, 7:18:11 PM (2 days ago) Dec 22
      to Robert Nichols, Gerrit Bot, goph...@pubsubhelper.golang.org, Austin Clements, Go LUCI, Cherry Mui, Ian Lance Taylor, Quim Muntal, Michael Pratt, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Michael Pratt and Quim Muntal

      Austin Clements voted Code-Review+2

      Code-Review+2
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Michael Pratt
      • Quim Muntal
      Submit Requirements:
        • requirement satisfiedCode-Review
        • requirement satisfiedNo-Unresolved-Comments
        • requirement 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: master
        Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
        Gerrit-Change-Number: 731980
        Gerrit-PatchSet: 3
        Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
        Gerrit-Reviewer: Austin Clements <aus...@google.com>
        Gerrit-Reviewer: Cherry Mui <cher...@google.com>
        Gerrit-Reviewer: Ian Lance Taylor <ia...@golang.org>
        Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
        Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
        Gerrit-CC: Gopher Robot <go...@golang.org>
        Gerrit-CC: Robert Nichols <robert....@dialwave.com>
        Gerrit-Attention: Quim Muntal <quimm...@gmail.com>
        Gerrit-Attention: Michael Pratt <mpr...@google.com>
        Gerrit-Comment-Date: Tue, 23 Dec 2025 00:18:07 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        open
        diffy

        Gopher Robot (Gerrit)

        unread,
        Dec 22, 2025, 7:19:34 PM (2 days ago) Dec 22
        to Robert Nichols, Gerrit Bot, goph...@pubsubhelper.golang.org, golang-...@googlegroups.com, Austin Clements, Go LUCI, Cherry Mui, Ian Lance Taylor, Quim Muntal, Michael Pratt, golang-co...@googlegroups.com

        Gopher Robot submitted the change

        Change information

        Commit message:
        runtime: revert entry point on freebsd/arm64

        CL 706175 unified some arm64 entry points. However, the entry point for

        freebsd/arm64 is incorrect and builds now fail. This change reverts the
        freebsd/arm64 entry point and adds additional context for the future.

        Fixes #76958
        Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
        GitHub-Last-Rev: 70064d8126f8ff7e2c0e5e8d4b00177c627f4d76
        GitHub-Pull-Request: golang/go#76959
        Auto-Submit: Austin Clements <aus...@google.com>
        Reviewed-by: Ian Lance Taylor <ia...@golang.org>
        Reviewed-by: Austin Clements <aus...@google.com>
        Reviewed-by: Cherry Mui <cher...@google.com>
        Files:
        • M src/runtime/rt0_freebsd_arm64.s
        Change size: XS
        Delta: 1 file changed, 5 insertions(+), 2 deletions(-)
        Branch: refs/heads/master
        Submit Requirements:
        • requirement satisfiedCode-Review: +2 by Cherry Mui, +2 by Ian Lance Taylor, +2 by Austin Clements
        • requirement satisfiedTryBots-Pass: LUCI-TryBot-Result+1 by Go LUCI
        Open in Gerrit
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: merged
        Gerrit-Project: go
        Gerrit-Branch: master
        Gerrit-Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8f10bc43
        Gerrit-Change-Number: 731980
        Gerrit-PatchSet: 4
        Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
        Gerrit-Reviewer: Austin Clements <aus...@google.com>
        Gerrit-Reviewer: Cherry Mui <cher...@google.com>
        Gerrit-Reviewer: Gopher Robot <go...@golang.org>
        Gerrit-Reviewer: Ian Lance Taylor <ia...@golang.org>
        Gerrit-Reviewer: Michael Pratt <mpr...@google.com>
        Gerrit-Reviewer: Quim Muntal <quimm...@gmail.com>
        Gerrit-CC: Robert Nichols <robert....@dialwave.com>
        open
        diffy
        satisfied_requirement
        Reply all
        Reply to author
        Forward
        0 new messages