mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-03 00:49:13 +08:00
25 lines
420 B
Go
25 lines
420 B
Go
//go:build openbsd
|
|
// +build openbsd
|
|
|
|
package stats
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
|
|
)
|
|
|
|
func fillInDiskStatus(disk *volume_server_pb.DiskStatus) {
|
|
fs := syscall.Statfs_t{}
|
|
err := syscall.Statfs(disk.Dir, &fs)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
disk.All = fs.F_blocks * uint64(fs.F_bsize)
|
|
disk.Free = fs.F_bfree * uint64(fs.F_bsize)
|
|
calculateDiskRemaining(disk)
|
|
|
|
return
|
|
}
|