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
|
//go:build netbsd
package device
import (
"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.Statvfs_t{}
err = unix.Statvfs(mount.MountPoint, info)
if err != nil && !ignoreErrors {
return nil, err
}
mount.Size = int64(info.Bsize) * int64(info.Blocks)
mount.Free = int64(info.Bsize) * int64(info.Bavail)
devices = append(devices, mount)
}
}
return devices, nil
}
|