diff options
-rw-r--r-- | include/fuse.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/fuse.h b/include/fuse.h index 49ba7d9..78d856b 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -253,14 +253,6 @@ struct fuse_config { int auto_cache; /** - * By default, fuse waits for all pending writes to complete - * and calls the FLUSH operation on close(2) of every fuse fd. - * With this option, wait and FLUSH are not done for read-only - * fuse fd, similar to the behavior of NFS/SMB clients. - */ - int no_rofd_flush; - - /** * The timeout in seconds for which file attributes are cached * for the purpose of checking if auto_cache should flush the * file data on open. @@ -297,6 +289,14 @@ struct fuse_config { unsigned int dmask; /** + * By default, fuse waits for all pending writes to complete + * and calls the FLUSH operation on close(2) of every fuse fd. + * With this option, wait and FLUSH are not done for read-only + * fuse fd, similar to the behavior of NFS/SMB clients. + */ + int no_rofd_flush; + + /** * Allow parallel direct-io writes to operate on the same file. * * FUSE implementations which do not handle parallel writes on |