summaryrefslogtreecommitdiff
path: root/fuse.py
diff options
context:
space:
mode:
authorTerence Honles <terence@honles.com>2016-03-06 22:35:49 -0800
committerTerence Honles <terence@honles.com>2016-03-06 22:35:49 -0800
commite1dbee34a3b377356cbc31c06125fd95795fdde2 (patch)
tree7b04563cdb09694b9d77c2ea77f96015e06f8c16 /fuse.py
parent63a7f6950f49b05590f65480e281599c8c31ed50 (diff)
parent0a87f4dd32428688e6097c3ee540fff7c5724eef (diff)
downloadfusepy-e1dbee34a3b377356cbc31c06125fd95795fdde2.tar.gz
Merge pull request #39 from rncry/master
Added missing fields in statvfs on linux
Diffstat (limited to 'fuse.py')
-rw-r--r--fuse.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/fuse.py b/fuse.py
index 5150453..a5d9c38 100644
--- a/fuse.py
+++ b/fuse.py
@@ -220,7 +220,11 @@ class c_statvfs(Structure):
('f_bavail', c_fsblkcnt_t),
('f_files', c_fsfilcnt_t),
('f_ffree', c_fsfilcnt_t),
- ('f_favail', c_fsfilcnt_t)]
+ ('f_favail', c_fsfilcnt_t),
+ ('f_fsid', c_ulong),
+ #('unused', c_int),
+ ('f_flag', c_ulong),
+ ('f_namemax', c_ulong)]
if _system == 'FreeBSD':
c_fsblkcnt_t = c_uint64