diff options
author | baude <bbaude@redhat.com> | 2019-01-03 08:55:35 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-01-03 12:49:30 -0600 |
commit | 561e65969f89c6f60193cf1755752b571a1149f5 (patch) | |
tree | 8f2f784c27546f061a38cf5fe68a9ee672be950f /vendor/github.com/klauspost/cpuid/detect_ref.go | |
parent | 098c13418abf3985f20689bdda0361904a40ef98 (diff) | |
download | podman-561e65969f89c6f60193cf1755752b571a1149f5.tar.gz podman-561e65969f89c6f60193cf1755752b571a1149f5.tar.bz2 podman-561e65969f89c6f60193cf1755752b571a1149f5.zip |
vendor in new containers/storage
vendor in latest containers/storage which contains a fix for when
a filesystem that overlayfs is on is ENOSPC.
adding pgzip/compress as a new dep for c/s
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'vendor/github.com/klauspost/cpuid/detect_ref.go')
-rw-r--r-- | vendor/github.com/klauspost/cpuid/detect_ref.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/github.com/klauspost/cpuid/detect_ref.go b/vendor/github.com/klauspost/cpuid/detect_ref.go new file mode 100644 index 000000000..909c5d9a7 --- /dev/null +++ b/vendor/github.com/klauspost/cpuid/detect_ref.go @@ -0,0 +1,23 @@ +// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file. + +// +build !amd64,!386 gccgo + +package cpuid + +func initCPU() { + cpuid = func(op uint32) (eax, ebx, ecx, edx uint32) { + return 0, 0, 0, 0 + } + + cpuidex = func(op, op2 uint32) (eax, ebx, ecx, edx uint32) { + return 0, 0, 0, 0 + } + + xgetbv = func(index uint32) (eax, edx uint32) { + return 0, 0 + } + + rdtscpAsm = func() (eax, ebx, ecx, edx uint32) { + return 0, 0, 0, 0 + } +} |