mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
bedf09363c
Use IoctlGetInt/IoctlSetInt from golang.org/x/sys/unix (where applicable) instead of manually reimplementing them. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
54 lines
1.2 KiB
Go
54 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.IoctlGetInt(int(fd), LoopCtlGetFree)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return index, nil
|
|
}
|
|
|
|
func ioctlLoopSetFd(loopFd, sparseFd uintptr) error {
|
|
if err := unix.IoctlSetInt(int(loopFd), LoopSetFd, int(sparseFd)); err != nil {
|
|
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.IoctlSetInt(int(loopFd), LoopSetCapacity, value); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|