Skip to content

Commit 8b5cc2e

Browse files
committed
vendor: containerd/console v1.0.1
full diff: https://github.com/containerd/consolve/compare/v1.0.0...v1.0.1 vendor golang.org/x/sys 2334cc1a136f0a5b4384f1a27e3634457be08553 full diff: golang/sys@ed371f2...2334cc1 - unix: add Darwin support for clonefile syscalls - Adds openat2 for linux openat2 is a new syscall added to Linux 5.6. It provides a superset of openat(2) functionality, extending it with flags telling the kernel how to resolve the paths. For more info, see https://lwn.net/Articles/803237/ NOTE that this is a second attempt to add the call; the previous one (https://golang.org/cl/227280) was reverted (https://golang.org/cl/227846) due to the test case failure on ARM (https://golang.org/issue/38357). This CL has the test case reworked to be less assumptive to the testing environment. In particular, it first tries if the most simplistic openat2() call succeeds, and skips the test otherwise. It is done that way because CI can be under under different kernels and in various envrionments -- in particular, Docker+seccomp can result in EPERM from a system call (which is not expected otherwise). For previous discussions about the test case, see https://golang.org/cl/227865. Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent ce4439a commit 8b5cc2e

126 files changed

Lines changed: 4604 additions & 7588 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

vendor.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ github.com/BurntSushi/toml v0.3.1
33
github.com/cespare/xxhash/v2 v2.1.1
44
github.com/containerd/btrfs 153935315f4ab9be5bf03650a1341454b05efa5d
55
github.com/containerd/cgroups 0b889c03f102012f1d93a97ddd3ef71cd6f4f510
6-
github.com/containerd/console v1.0.0
6+
github.com/containerd/console v1.0.1
77
github.com/containerd/continuity efbc4488d8fe1bdc16bde3b2d2990d9b3a899165
88
github.com/containerd/fifo f15a3290365b9d2627d189e619ab4008e0069caf
99
github.com/containerd/go-runc 7016d3ce2328dd2cb1192b2076ebd565c4e8df0c
@@ -48,7 +48,7 @@ go.etcd.io/bbolt v1.3.5
4848
go.opencensus.io v0.22.0
4949
golang.org/x/net ab34263943818b32f575efc978a3d24e80b04bd7
5050
golang.org/x/sync 42b317875d0fa942474b76e1b46a6060d720ae6e
51-
golang.org/x/sys ed371f2e16b4b305ee99df548828de367527b76b
51+
golang.org/x/sys 2334cc1a136f0a5b4384f1a27e3634457be08553
5252
golang.org/x/text v0.3.3
5353
google.golang.org/genproto e50cd9704f63023d62cd06a1994b98227fc4d21a
5454
google.golang.org/grpc v1.27.1

vendor/github.com/containerd/console/console.go

Lines changed: 14 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/containerd/console/console_unix.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/containerd/console/go.mod

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/containerd/console/tc_darwin.go

Lines changed: 1 addition & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/containerd/console/tc_linux.go

Lines changed: 3 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/containerd/console/tc_netbsd.go

Lines changed: 45 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/containerd/console/tc_unix.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/sys/cpu/cpu.go

Lines changed: 96 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/sys/cpu/cpu_aix.go

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)