lotus/extern/sector-storage/fsutil/statfs.go
2021-02-18 16:44:34 +01:00

13 lines
262 B
Go

package fsutil
type FsStat struct {
Capacity int64
Available int64 // Available to use for sector storage
FSAvailable int64 // Available in the filesystem
Reserved int64
// non-zero when storage has configured MaxStorage
Max int64
Used int64
}