mirror of https://github.com/perkeep/perkeep.git
fs: actually claim to have free space
Change-Id: Ia1aac8f44d1616130b5052a97fc8733027c65c4b
This commit is contained in:
parent
a51cd21666
commit
450b46e9ca
|
@ -304,6 +304,7 @@ func (fs *CamliFileSystem) Statfs(req *fuse.StatfsRequest, res *fuse.StatfsRespo
|
|||
// Make some stuff up, just to see if it makes "lsof" happy.
|
||||
res.Blocks = 1 << 35
|
||||
res.Bfree = 1 << 34
|
||||
res.Bavail = 1 << 34
|
||||
res.Files = 1 << 29
|
||||
res.Ffree = 1 << 28
|
||||
res.Namelen = 2048
|
||||
|
|
Loading…
Reference in New Issue