posix: checkDiskFree() also checks free inodes. (#2086)

Previously checkDiskFree() checks for free available space.  This
patch enables checkDiskFree() also checks for free inodes in linux and
free clusters in windows.

Fixes #2075
This commit is contained in:
Bala FA
2016-07-04 11:04:45 +05:30
committed by Harshavardhana
parent 52b55afce0
commit 1ad5fb8f76
5 changed files with 37 additions and 2 deletions

View File

@@ -23,5 +23,7 @@ package disk
type Info struct {
Total int64
Free int64
Files int64
Ffree int64
FSType string
}