lotus/storage/sealer/fsutil/statfs.go

13 lines
262 B
Go
Raw Normal View History

2020-07-08 14:58:09 +00:00
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
2020-07-08 14:58:09 +00:00
}