aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@suse.cz>2012-04-11 11:45:06 +0200
committerMiklos Szeredi <mszeredi@suse.cz>2012-04-11 11:45:06 +0200
commit0a2da9b2ef2ef76c09397597f260245b020e6522 (patch)
tree3ec4888a40ba27b6fbb25773663a64ed70873daf /fs/fuse
parentfuse: O_DIRECT support for files (diff)
downloadlinux-dev-0a2da9b2ef2ef76c09397597f260245b020e6522.tar.xz
linux-dev-0a2da9b2ef2ef76c09397597f260245b020e6522.zip
fuse: allow nanosecond granularity
Derrik Pates reports that an utimensat with a NULL argument results in the current time being sent from the kernel with 1 second granularity. Reported-by: Derrik Pates <demon@now.ai> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'fs/fuse')
-rw-r--r--fs/fuse/inode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index 64cf8d07393e..c9a0c972a4b2 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -947,6 +947,7 @@ static int fuse_fill_super(struct super_block *sb, void *data, int silent)
sb->s_magic = FUSE_SUPER_MAGIC;
sb->s_op = &fuse_super_operations;
sb->s_maxbytes = MAX_LFS_FILESIZE;
+ sb->s_time_gran = 1;
sb->s_export_op = &fuse_export_operations;
file = fget(d.fd);