Skip to content

Commit 532cf27

Browse files
kolyshkingopherbot
authored andcommitted
syscall: rm go:linkname from origRlimitNofile
Since CL 588076 runc can do fine without the kludge. The code accessing the symbol is now guarded with `go:build !go1.23` in all supported runc branches (main: [1], release-1.1: [2]). This reverts part of CL 587219. Updates #67401. For #66797. [1]: opencontainers/runc#4290 [2]: opencontainers/runc#4299 Change-Id: I204843a93c36857e21ab9b43bd7aaf046e8b9787 Reviewed-on: https://go-review.googlesource.com/c/go/+/587918 Auto-Submit: Ian Lance Taylor <[email protected]> Reviewed-by: Michael Knyszek <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 5532427 commit 532cf27

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/syscall/rlimit.go

-11
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,9 @@ package syscall
88

99
import (
1010
"sync/atomic"
11-
_ "unsafe"
1211
)
1312

1413
// origRlimitNofile, if non-nil, is the original soft RLIMIT_NOFILE.
15-
//
16-
// origRlimitNofile should be an internal detail,
17-
// but widely used packages access it using linkname.
18-
// Notable members of the hall of shame include:
19-
// - github.com/opencontainers/runc
20-
//
21-
// Do not remove or change the type signature.
22-
// See go.dev/issue/67401.
23-
//
24-
//go:linkname origRlimitNofile
2514
var origRlimitNofile atomic.Pointer[Rlimit]
2615

2716
// Some systems set an artificially low soft limit on open file count, for compatibility

0 commit comments

Comments
 (0)