diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2002-10-07 10:24:26 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2002-10-07 10:24:26 +0000 |
commit | 24ed9451bdd3450954e900c77a767ed3bcb17e72 (patch) | |
tree | 5a0b365762011eadd00b2c2e76fda16823db4187 /include/linux/fuse.h | |
parent | 27fc1b30dcd61555597363a4ab12e457e467d73c (diff) | |
download | libfuse-24ed9451bdd3450954e900c77a767ed3bcb17e72.tar.gz |
statfs header cleanup
Diffstat (limited to 'include/linux/fuse.h')
-rw-r--r-- | include/linux/fuse.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index 539ebce..b6f41db 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h @@ -8,7 +8,6 @@ /* This file defines the kernel interface of FUSE */ -#include "fusestat.h" /** Version number of this interface */ #define FUSE_KERNEL_VERSION 2 @@ -61,6 +60,15 @@ struct fuse_attr { unsigned long ctime; }; +struct fuse_kstatfs { + long block_size; + long blocks; + long blocks_free; + long files; + long files_free; + long namelen; +}; + #define FATTR_MODE (1 << 0) #define FATTR_UID (1 << 1) #define FATTR_GID (1 << 2) @@ -159,7 +167,7 @@ struct fuse_write_in { }; struct fuse_statfs_out { - struct fuse_statfs st; + struct fuse_kstatfs st; }; struct fuse_in_header { |