mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
069fdc8a08
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 33267e036f
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>
28 lines
555 B
Go
28 lines
555 B
Go
// +build linux,cgo
|
|
|
|
package devicemapper
|
|
|
|
import (
|
|
"unsafe"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func ioctlBlkGetSize64(fd uintptr) (int64, error) {
|
|
var size int64
|
|
if _, _, err := unix.Syscall(unix.SYS_IOCTL, fd, BlkGetSize64, uintptr(unsafe.Pointer(&size))); err != 0 {
|
|
return 0, err
|
|
}
|
|
return size, nil
|
|
}
|
|
|
|
func ioctlBlkDiscard(fd uintptr, offset, length uint64) error {
|
|
var r [2]uint64
|
|
r[0] = offset
|
|
r[1] = length
|
|
|
|
if _, _, err := unix.Syscall(unix.SYS_IOCTL, fd, BlkDiscard, uintptr(unsafe.Pointer(&r[0]))); err != 0 {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|