Skip to content

Commit ed26953

Browse files
committed
wip
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
1 parent ffa9baf commit ed26953

File tree

7 files changed

+16
-6
lines changed

7 files changed

+16
-6
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/moby/sys/mountinfo v0.7.1
1414
github.com/moby/sys/user v0.1.0
1515
github.com/mrunalp/fileutils v0.5.1
16-
github.com/opencontainers/runtime-spec v1.2.0
16+
github.com/opencontainers/runtime-spec v1.2.1-0.20240625190033-701738418b95
1717
github.com/opencontainers/selinux v1.11.0
1818
github.com/seccomp/libseccomp-golang v0.10.0
1919
github.com/sirupsen/logrus v1.9.3

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ github.com/moby/sys/user v0.1.0 h1:WmZ93f5Ux6het5iituh9x2zAG7NFY9Aqi49jjE1PaQg=
3636
github.com/moby/sys/user v0.1.0/go.mod h1:fKJhFOnsCN6xZ5gSfbM6zaHGgDJMrqt9/reuj4T7MmU=
3737
github.com/mrunalp/fileutils v0.5.1 h1:F+S7ZlNKnrwHfSwdlgNSkKo67ReVf8o9fel6C3dkm/Q=
3838
github.com/mrunalp/fileutils v0.5.1/go.mod h1:M1WthSahJixYnrXQl/DFQuteStB1weuxD2QJNHXfbSQ=
39-
github.com/opencontainers/runtime-spec v1.2.0 h1:z97+pHb3uELt/yiAWD691HNHQIF07bE7dzrbT927iTk=
40-
github.com/opencontainers/runtime-spec v1.2.0/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0=
39+
github.com/opencontainers/runtime-spec v1.2.1-0.20240625190033-701738418b95 h1:Ghl8Z3l+yPQUDSxAp7Kg7fJLRNNXjOsR6ooDcca7PjU=
40+
github.com/opencontainers/runtime-spec v1.2.1-0.20240625190033-701738418b95/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0=
4141
github.com/opencontainers/selinux v1.11.0 h1:+5Zbo97w3Lbmb3PeqQtpmTkMwsW5nRI3YaLpt7tQ7oU=
4242
github.com/opencontainers/selinux v1.11.0/go.mod h1:E5dMC3VPuVvVHDYmi78qvhJp8+M586T4DlDRYpFkyec=
4343
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

libcontainer/configs/config.go

+2
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,8 @@ type (
300300
Hooks map[HookName]HookList
301301
)
302302

303+
type CPUAffinity = specs.CPUAffinity
304+
303305
const (
304306
// Prestart commands are executed after the container namespaces are created,
305307
// but before the user supplied command is executed from init.

libcontainer/process_linux.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func (p *setnsProcess) start() (retErr error) {
127127

128128
// get the "before" value of oom kill count
129129
oom, _ := p.manager.OOMKillCount()
130-
err := p.cmd.Start()
130+
err := p.cmd.Start() // https://github.com/opencontainers/runc/pull/3923/commits/afc23e33971b657c4a09c54b16c6139651171aad
131131
// close the child-side of the pipes (controlled by child)
132132
p.comm.closeChild()
133133
if err != nil {

vendor/github.com/opencontainers/runtime-spec/specs-go/config.go

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/opencontainers/runtime-spec/specs-go/version.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ github.com/moby/sys/user
4242
# github.com/mrunalp/fileutils v0.5.1
4343
## explicit; go 1.13
4444
github.com/mrunalp/fileutils
45-
# github.com/opencontainers/runtime-spec v1.2.0
45+
# github.com/opencontainers/runtime-spec v1.2.1-0.20240625190033-701738418b95
4646
## explicit
4747
github.com/opencontainers/runtime-spec/specs-go
4848
github.com/opencontainers/runtime-spec/specs-go/features

0 commit comments

Comments
 (0)