File: dev_openbsd.go

package info (click to toggle)
gdu 5.34.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,280 kB
  • sloc: makefile: 145
file content (29 lines) | stat: -rw-r--r-- 675 bytes parent folder | download | duplicates (5)
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
}