Remove minimum inodes reqd check (#4747)

This commit is contained in:
Nitish Tiwari
2017-08-04 08:37:22 +05:30
committed by Dee Koder
parent f7889e1af7
commit fcc61fa46a
10 changed files with 40 additions and 61 deletions

View File

@@ -34,9 +34,9 @@ const (
// StorageInfo - represents total capacity of underlying storage.
type StorageInfo struct {
// Total disk space.
Total int64
Total uint64
// Free available disk space.
Free int64
Free uint64
// Backend type.
Backend struct {
// Represents various backend types, currently on FS and Erasure.