diff options
author | Terence Honles <terence@honles.com> | 2016-03-06 22:35:49 -0800 |
---|---|---|
committer | Terence Honles <terence@honles.com> | 2016-03-06 22:35:49 -0800 |
commit | e1dbee34a3b377356cbc31c06125fd95795fdde2 (patch) | |
tree | 7b04563cdb09694b9d77c2ea77f96015e06f8c16 | |
parent | 63a7f6950f49b05590f65480e281599c8c31ed50 (diff) | |
parent | 0a87f4dd32428688e6097c3ee540fff7c5724eef (diff) | |
download | fusepy-e1dbee34a3b377356cbc31c06125fd95795fdde2.tar.gz |
Merge pull request #39 from rncry/master
Added missing fields in statvfs on linux
-rw-r--r-- | fuse.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |