mount: Implement statfs interface so df works - fixes #894

The data returned is not related to the files on the remote, but
apparently samba needs it.
This commit is contained in:
Nick Craig-Wood
2016-11-20 22:54:03 +00:00
parent 0b562bcabc
commit c41b67ea08
2 changed files with 21 additions and 0 deletions

1
vendor/bazil.org/fuse/fuse.go generated vendored
View File

@@ -1262,6 +1262,7 @@ func (r *StatfsRequest) Respond(resp *StatfsResponse) {
Bfree: resp.Bfree,
Bavail: resp.Bavail,
Files: resp.Files,
Ffree: resp.Ffree,
Bsize: resp.Bsize,
Namelen: resp.Namelen,
Frsize: resp.Frsize,