1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
//go:build openbsd
package device
import (
"fmt"
"strings"
"golang.org/x/sys/unix"
)
func processMounts(mounts Devices, ignoreErrors bool) (devices Devices, err error) {
for _, mount := range mounts {
if strings.HasPrefix(mount.Name, "/dev") || mount.Fstype == "zfs" {
info := &unix.Statfs_t{}
err = unix.Statfs(mount.MountPoint, info)
if err != nil && !ignoreErrors {
return nil, fmt.Errorf("getting stats for mount point: \"%s\", %w", mount.MountPoint, err)
}
mount.Size = int64(info.F_bsize) * int64(info.F_blocks)
mount.Free = int64(info.F_bsize) * int64(info.F_bavail)
devices = append(devices, mount)
}
}
return devices, nil
}
|