Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions pkg/loopback/ioctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down