Files
seaweedfs/weed/stats/disk_openbsd.go

25 lines
420 B
Go
Raw Normal View History

//go:build openbsd
// +build openbsd
package stats
import (
2024-05-23 08:25:16 -07:00
"syscall"
2024-05-23 08:25:16 -07:00
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
)
func fillInDiskStatus(disk *volume_server_pb.DiskStatus) {
2024-05-23 08:25:16 -07:00
fs := syscall.Statfs_t{}
err := syscall.Statfs(disk.Dir, &fs)
if err != nil {
return
}
2024-06-03 07:10:28 +02:00
2024-05-23 08:25:16 -07:00
disk.All = fs.F_blocks * uint64(fs.F_bsize)
disk.Free = fs.F_bfree * uint64(fs.F_bsize)
2024-06-03 07:10:28 +02:00
calculateDiskRemaining(disk)
2024-05-23 08:25:16 -07:00
return
}