mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #39801 from kolyshkin/loopback-idx
Use correct `LOOP_CTL_GET_FREE` API in `pkg/loopback`
This commit is contained in:
commit
339dd0a2e5
1 changed files with 7 additions and 3 deletions
|
@ -9,11 +9,15 @@ import (
|
|||
)
|
||||
|
||||
func ioctlLoopCtlGetFree(fd uintptr) (int, error) {
|
||||
index, err := unix.IoctlGetInt(int(fd), LoopCtlGetFree)
|
||||
if err != nil {
|
||||
// The ioctl interface for /dev/loop-control (since Linux 3.1) is a bit
|
||||
// off compared to what you'd expect: instead of writing an integer to a
|
||||
// parameter pointer like unix.IoctlGetInt() expects, it returns the first
|
||||
// available loop device index directly.
|
||||
ioctlReturn, _, err := unix.Syscall(unix.SYS_IOCTL, fd, LoopCtlGetFree, 0)
|
||||
if err != 0 {
|
||||
return 0, err
|
||||
}
|
||||
return index, nil
|
||||
return int(ioctlReturn), nil
|
||||
}
|
||||
|
||||
func ioctlLoopSetFd(loopFd, sparseFd uintptr) error {
|
||||
|
|
Loading…
Add table
Reference in a new issue