mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-04-05 20:52:50 +08:00
Add support for OpenBSD (#5578)
Co-authored-by: Dave St.Germain <dcs@adullmoment.com>
This commit is contained in:
parent
d3032d1e80
commit
731b3aadbe
@ -1,5 +1,5 @@
|
||||
//go:build openbsd || netbsd || plan9 || solaris
|
||||
// +build openbsd netbsd plan9 solaris
|
||||
//go:build netbsd || plan9 || solaris
|
||||
// +build netbsd plan9 solaris
|
||||
|
||||
package stats
|
||||
|
||||
|
25
weed/stats/disk_openbsd.go
Normal file
25
weed/stats/disk_openbsd.go
Normal file
@ -0,0 +1,25 @@
|
||||
//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)
|
||||
disk.Used = disk.All - disk.Free
|
||||
disk.PercentFree = float32((float64(disk.Free) / float64(disk.All)) * 100)
|
||||
disk.PercentUsed = float32((float64(disk.Used) / float64(disk.All)) * 100)
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user