lotus/storage/sealer/fsutil/statfs.go
2022-06-14 20:03:38 +02: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
}