diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-02-20 14:10:49 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-02-20 14:10:49 +0000 |
commit | b59586199b5c53fa7002e9e1e6accc08a515f420 (patch) | |
tree | a65c735e44febeaf4ff5051613222c28c3d7e0c4 /include/linux/fuse.h | |
parent | 76f6578928809ac2e687dc0979f3051a00b56970 (diff) | |
download | libfuse-b59586199b5c53fa7002e9e1e6accc08a515f420.tar.gz |
more kernel interface changes
Diffstat (limited to 'include/linux/fuse.h')
-rw-r--r-- | include/linux/fuse.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index 9bca31c..10ef186 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h @@ -66,11 +66,13 @@ struct fuse_attr { unsigned int gid; unsigned int rdev; unsigned long long size; - unsigned long _dummy; unsigned long blocks; unsigned long atime; + unsigned long atimensec; unsigned long mtime; + unsigned long mtimensec; unsigned long ctime; + unsigned long ctimensec; }; struct fuse_kstatfs { @@ -87,7 +89,9 @@ struct fuse_kstatfs { #define FATTR_UID (1 << 1) #define FATTR_GID (1 << 2) #define FATTR_SIZE (1 << 3) -#define FATTR_UTIME (1 << 4) +#define FATTR_ATIME (1 << 4) +#define FATTR_MTIME (1 << 5) +#define FATTR_CTIME (1 << 6) enum fuse_opcode { FUSE_LOOKUP = 1, |