mirror of
https://github.com/docker/cli.git
synced 2026-08-30 02:24:27 -05:00
Changes most references of syscall to golang.org/x/sys/ Ones aren't changes include, Errno, Signal and SysProcAttr as they haven't been implemented in /x/sys/. Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com> [s390x] switch utsname from unsigned to signed per https://github.com/golang/sys/commit/33267e036fd93fcd26ea95b7bdaf2d8306cb743c char in s390x in the /x/sys/unix package is now signed, so change the buildtags Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com> Upstream-commit: 069fdc8a083cb1663e4f86fe3fd9b9a1aebc3e54 Component: engine
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
// +build linux,cgo
|
|
|
|
package loopback
|
|
|
|
import (
|
|
"unsafe"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func ioctlLoopCtlGetFree(fd uintptr) (int, error) {
|
|
index, _, err := unix.Syscall(unix.SYS_IOCTL, fd, LoopCtlGetFree, 0)
|
|
if err != 0 {
|
|
return 0, err
|
|
}
|
|
return int(index), nil
|
|
}
|
|
|
|
func ioctlLoopSetFd(loopFd, sparseFd uintptr) error {
|
|
if _, _, err := unix.Syscall(unix.SYS_IOCTL, loopFd, LoopSetFd, sparseFd); err != 0 {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func ioctlLoopSetStatus64(loopFd uintptr, loopInfo *loopInfo64) error {
|
|
if _, _, err := unix.Syscall(unix.SYS_IOCTL, loopFd, LoopSetStatus64, uintptr(unsafe.Pointer(loopInfo))); err != 0 {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func ioctlLoopClrFd(loopFd uintptr) error {
|
|
if _, _, err := unix.Syscall(unix.SYS_IOCTL, loopFd, LoopClrFd, 0); err != 0 {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func ioctlLoopGetStatus64(loopFd uintptr) (*loopInfo64, error) {
|
|
loopInfo := &loopInfo64{}
|
|
|
|
if _, _, err := unix.Syscall(unix.SYS_IOCTL, loopFd, LoopGetStatus64, uintptr(unsafe.Pointer(loopInfo))); err != 0 {
|
|
return nil, err
|
|
}
|
|
return loopInfo, nil
|
|
}
|
|
|
|
func ioctlLoopSetCapacity(loopFd uintptr, value int) error {
|
|
if _, _, err := unix.Syscall(unix.SYS_IOCTL, loopFd, LoopSetCapacity, uintptr(value)); err != 0 {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|