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

@@ -19,12 +19,14 @@ package disk
// Info stat fs struct is container which holds following values
// Total - total size of the volume / disk
// Free - free size of the volume / disk
// Type - file system type string
// Files - total inodes available
// Ffree - free inodes available
// FSType - file system type
type Info struct {
Total int64
Free int64
Files int64
Ffree int64
Total uint64
Free uint64
Files uint64
Ffree uint64
FSType string
}