From: Cherry Mui Date: Sat, 21 Dec 2024 05:07:34 +0000 (-0500) Subject: internal/syscall/unix: apply fstatat fix to linux/mips64le X-Git-Tag: go1.24rc2~6^2~58 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=06b191e11f;p=gostls13.git internal/syscall/unix: apply fstatat fix to linux/mips64le Apply CL 633280 to linux/mips64le, as it has the same struct as mips64. Updates #70659. Change-Id: Ibab635e69e44682eb214bf6a00f4cd75816b2d34 Reviewed-on: https://go-review.googlesource.com/c/go/+/637739 TryBot-Result: Gopher Robot Reviewed-by: Ian Lance Taylor Run-TryBot: Cherry Mui LUCI-TryBot-Result: Go LUCI --- diff --git a/src/internal/syscall/unix/at_fstatat.go b/src/internal/syscall/unix/at_fstatat.go index 217e19a776..18cd62be20 100644 --- a/src/internal/syscall/unix/at_fstatat.go +++ b/src/internal/syscall/unix/at_fstatat.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build dragonfly || (linux && !(loong64 || mips64)) || netbsd || (openbsd && mips64) +//go:build dragonfly || (linux && !(loong64 || mips64 || mips64le)) || netbsd || (openbsd && mips64) package unix diff --git a/src/internal/syscall/unix/at_fstatat2.go b/src/internal/syscall/unix/at_fstatat2.go index b18098b7d3..b09aecbcdd 100644 --- a/src/internal/syscall/unix/at_fstatat2.go +++ b/src/internal/syscall/unix/at_fstatat2.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build freebsd || (linux && (loong64 || mips64)) +//go:build freebsd || (linux && (loong64 || mips64 || mips64le)) package unix