more kernel interface changes
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 @@
 	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 @@
 #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,