]> Cypherpunks repositories - gostls13.git/commitdiff
internal/syscall/unix: apply fstatat fix to linux/mips64le
authorCherry Mui <cherryyz@google.com>
Sat, 21 Dec 2024 05:07:34 +0000 (00:07 -0500)
committerCherry Mui <cherryyz@google.com>
Sat, 21 Dec 2024 20:51:34 +0000 (12:51 -0800)
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 <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>

src/internal/syscall/unix/at_fstatat.go
src/internal/syscall/unix/at_fstatat2.go

index 217e19a776d2b21eb936a284909dc2c02fd124b2..18cd62be203556f2348693c8a8c78903e263af58 100644 (file)
@@ -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
 
index b18098b7d36eb0de42df845dd4f5a07c73d7156c..b09aecbcdda4dd137a7a0f6b4143a85d442a1f6b 100644 (file)
@@ -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