aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-07-08 01:12:59 +0200
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-07-08 01:46:30 +0200
commit79b446d22ce8cfb387549bef2a0ddcaf6fbb3331 (patch)
tree4d7eaa32723ff05387125e18eef5ca2931ffe9e1 /include
parent77e9e15244c7756ea966a11d169ca76e655d142d (diff)
Fixed description of struct fuse_conn_info->time_gran
At least on Linux kernel 4.9, a value of zero gives more than 1-sec accuracy.
Diffstat (limited to 'include')
-rw-r--r--include/fuse_common.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h
index 6bb14f3..8bacec5 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -406,8 +406,9 @@ struct fuse_conn_info {
*
* To prevent this problem, this variable can be used to inform the
* kernel about the timestamp granularity supported by the file-system.
- * The value should be power of 10. A zero (default) value is
- * equivalent to 1000000000 (1sec).
+ * The value should be power of 10. The default is 1, i.e. full
+ * nano-second resolution. Filesystems supporting only second resolution
+ * should set this to 1000000000.
*/
unsigned time_gran;